~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: John Arbash Meinel
  • Date: 2006-12-11 19:25:13 UTC
  • mfrom: (2172 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2173.
  • Revision ID: john@arbash-meinel.com-20061211192513-u9ivkqwkp8j3v2i5
[merge] bzr.dev 2172 and move NEWS to the correct location

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