/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/plugins/weave_fmt/test_bzrdir.py

  • Committer: Jelmer Vernooij
  • Date: 2018-11-16 18:35:30 UTC
  • mfrom: (7143.15.15 more-cleanups)
  • mto: This revision was merged to the branch mainline in revision 7178.
  • Revision ID: jelmer@jelmer.uk-20181116183530-ue8yx60h5tinl2wy
Merge more-cleanups.

Show diffs side-by-side

added added

removed removed

Lines of Context:
339
339
        rt = b.repository.revision_tree(rh[0])
340
340
        foo_id = b'foo-20051004035605-91e788d1875603ae'
341
341
        with rt.lock_read():
342
 
            eq(rt.get_file_text('foo', foo_id), b'initial contents\n')
 
342
            eq(rt.get_file_text('foo'), b'initial contents\n')
343
343
        rt = b.repository.revision_tree(rh[1])
344
344
        with rt.lock_read():
345
 
            eq(rt.get_file_text('foo', foo_id), b'new contents\n')
 
345
            eq(rt.get_file_text('foo'), b'new contents\n')
346
346
        # check a backup was made:
347
347
        backup_dir = 'backup.bzr.~1~'
348
348
        t = self.get_transport('.')