/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/blackbox/test_resolve.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:
119
119
        self.build_tree_contents([('tree/file',
120
120
            '<<<<<<<\na\n=======\n>>>>>>>\n')])
121
121
        tree.add('file', 'file_id')
122
 
        self.assertEqual(tree.kind('file_id'), 'file')
 
122
        self.assertEqual(tree.kind('file', 'file_id'), 'file')
123
123
        file_conflict = conflicts.TextConflict('file', file_id='file_id')
124
124
        tree.set_conflicts(conflicts.ConflictList([file_conflict]))
125
125
        note = self.run_bzr('resolve', retcode=1, working_dir='tree')[1]