/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_shelf.py

  • Committer: Jelmer Vernooij
  • Date: 2018-07-15 18:45:17 UTC
  • mto: (7045.3.3 python3-r)
  • mto: This revision was merged to the branch mainline in revision 7047.
  • Revision ID: jelmer@jelmer.uk-20180715184517-1ipa50jg36zvglc5
Fix another 300 tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
199
199
        tree.add(['foo', 'bar'], [b'foo-id', b'bar-id'])
200
200
        creator = shelf.ShelfCreator(tree, tree.basis_tree())
201
201
        self.addCleanup(creator.finalize)
202
 
        self.assertEqual([('add file', b'bar-id', 'directory', b'bar'),
203
 
                          ('add file', b'foo-id', 'file', b'foo')],
 
202
        self.assertEqual([('add file', b'bar-id', 'directory', 'bar'),
 
203
                          ('add file', b'foo-id', 'file', 'foo')],
204
204
                          sorted(list(creator.iter_shelvable())))
205
205
        return creator, tree
206
206