~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_selftest.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-12-01 21:37:07 UTC
  • mfrom: (2156.1.1 bzrw2)
  • Revision ID: pqm@pqm.ubuntu.com-20061201213707-a6b853f35f573c57
(Vincent Ladeuil) Fix a test to pass on win32

Show diffs side-by-side

added added

removed removed

Lines of Context:
438
438
        self.make_branch_and_tree('one')
439
439
 
440
440
        process = self.start_bzr_subprocess(['root'], working_dir='one')
441
 
        result = self.finish_bzr_subprocess(process)
 
441
        result = self.finish_bzr_subprocess(process, universal_newlines=True)
442
442
        self.assertEndsWith(result[0], 'one\n')
443
443
        self.assertEqual('', result[1])
444
 
        
 
444
 
445
445
 
446
446
class TestRunBzrError(ExternalBase):
447
447