/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 bzrlib/tests/test_transform.py

  • Committer: Aaron Bentley
  • Date: 2008-06-06 16:14:45 UTC
  • mto: This revision was merged to the branch mainline in revision 3483.
  • Revision ID: aaron@aaronbentley.com-20080606161445-b7ii90zduprtigkb
Rename mutate_tree to delta_from_tree, add comment

Show diffs side-by-side

added added

removed removed

Lines of Context:
1713
1713
        # Force the tree to report that it is case insensitive
1714
1714
        target = self.make_branch_and_tree('target')
1715
1715
        target.case_sensitive = False
1716
 
        build_tree(source.basis_tree(), target, source, mutate_tree=True)
 
1716
        build_tree(source.basis_tree(), target, source, delta_from_tree=True)
1717
1717
        self.assertEqual('file.moved', target.id2path('lower-id'))
1718
1718
        self.assertEqual('FILE', target.id2path('upper-id'))
1719
1719