/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/fastimport/tests/test_generic_processor.py

  • Committer: Jelmer Vernooij
  • Date: 2017-11-12 20:07:32 UTC
  • mto: This revision was merged to the branch mainline in revision 6819.
  • Revision ID: jelmer@jelmer.uk-20171112200732-ehxgen03s9jphe8n
Swap arguments for get_symlink_target and kind/stored_kind.

Show diffs side-by-side

added added

removed removed

Lines of Context:
180
180
    def assertSymlinkTarget(self, branch, tree, path, target):
181
181
        file_id = tree.path2id(path)
182
182
        with branch.lock_read():
183
 
            self.assertEqual(tree.get_symlink_target(file_id), target)
 
183
            self.assertEqual(tree.get_symlink_target(path, file_id), target)
184
184
 
185
185
    def assertExecutable(self, branch, tree, path, executable):
186
186
        with branch.lock_read():