/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/tests/test_matchers.py

  • Committer: Jelmer Vernooij
  • Date: 2018-07-27 01:52:24 UTC
  • mto: This revision was merged to the branch mainline in revision 7057.
  • Revision ID: jelmer@jelmer.uk-20180727015224-yh6yjb0fvb9302dn
Fix tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
212
212
        mismatch = ContainsNoVfsCalls().match(calls)
213
213
        self.assertIsNot(None, mismatch)
214
214
        self.assertEqual([calls[0].call], mismatch.vfs_calls)
215
 
        self.assertEqual("no VFS calls expected, got: b'append'(b'file')""",
216
 
                mismatch.describe())
 
215
        self.assertIn(mismatch.describe(), [
 
216
                "no VFS calls expected, got: b'append'(b'file')",
 
217
                "no VFS calls expected, got: append('file')"])
217
218
 
218
219
 
219
220
class TestRevisionHistoryMatches(TestCaseWithTransport):