~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_remote.py

  • Committer: Andrew Bennetts
  • Date: 2010-01-15 03:58:20 UTC
  • mfrom: (4963 +trunk)
  • mto: (4973.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 4975.
  • Revision ID: andrew.bennetts@canonical.com-20100115035820-ilb3t36swgzq6v1l
MergeĀ lp:bzr.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2893
2893
        # In addition to re-raising ErrorFromSmartServer, some debug info has
2894
2894
        # been muttered to the log file for developer to look at.
2895
2895
        self.assertContainsRe(
2896
 
            self._get_log(keep_log_file=True),
 
2896
            self.get_log(),
2897
2897
            "Missing key 'branch' in context")
2898
2898
 
2899
2899
    def test_path_missing(self):
2907
2907
        self.assertEqual(server_error, translated_error)
2908
2908
        # In addition to re-raising ErrorFromSmartServer, some debug info has
2909
2909
        # been muttered to the log file for developer to look at.
2910
 
        self.assertContainsRe(
2911
 
            self._get_log(keep_log_file=True), "Missing key 'path' in context")
 
2910
        self.assertContainsRe(self.get_log(), "Missing key 'path' in context")
2912
2911
 
2913
2912
 
2914
2913
class TestStacking(tests.TestCaseWithTransport):