/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/per_workingtree/test_add.py

  • Committer: Jelmer Vernooij
  • Date: 2017-12-03 22:21:17 UTC
  • mfrom: (6825.5.2 all-paths)
  • Revision ID: jelmer@jelmer.uk-20171203222117-strqpyuxkux0oomt
Merge lp:~jelmer/brz/all-paths.

Show diffs side-by-side

added added

removed removed

Lines of Context:
180
180
        tree = self.make_branch_and_tree('.')
181
181
        tree.lock_write()
182
182
        tree.add('')
183
 
        self.assertEqual([tree.path2id('')], list(tree.all_file_ids()))
 
183
        self.assertEqual([''], list(tree.all_versioned_paths()))
184
184
        # the root should have been changed to be a new unique root.
185
185
        self.assertNotEqual(inventory.ROOT_ID, tree.path2id(''))
186
186
        tree.unlock()