/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/git/tests/test_workingtree.py

  • Committer: Jelmer Vernooij
  • Date: 2019-06-29 21:31:14 UTC
  • mto: This revision was merged to the branch mainline in revision 7390.
  • Revision ID: jelmer@jelmer.uk-20190629213114-ux6f3xcof8olitvr
Don't make TreeChange tuple-like objects anymore, so we can add and remove attributes as necessary.

Show diffs side-by-side

added added

removed removed

Lines of Context:
149
149
                    (b'a' * 40, b'a' * 40))]
150
150
        self.assertEqual(
151
151
            delta,
152
 
            tree_delta_from_git_changes(changes, default_mapping,
 
152
            tree_delta_from_git_changes(
 
153
                changes, default_mapping,
153
154
                (GitFileIdMap({u'a': b'a-id', '': b'TREE_ROOT'}, default_mapping),
154
155
                 GitFileIdMap({u'a': b'a-id', '': b'TREE_ROOT'}, default_mapping))))
155
156