~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_selftest.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-01-03 19:12:30 UTC
  • mfrom: (3146.4.12 win32fixes)
  • Revision ID: pqm@pqm.ubuntu.com-20080103191230-baidarqql3lct685
Misc cleanups for win32, especially tests (abentley)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1805
1805
        # code.
1806
1806
        out, err = self.run_bzr(["log", "/nonexistantpath"], retcode=3)
1807
1807
        self.assertEqual(out, '')
1808
 
        self.assertEqual(err, 'bzr: ERROR: Not a branch: "/nonexistantpath/".\n')
 
1808
        self.assertContainsRe(err,
 
1809
            'bzr: ERROR: Not a branch: ".*nonexistantpath/".\n')
1809
1810
 
1810
1811
 
1811
1812
class TestTestLoader(TestCase):