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

  • Committer: Robert Collins
  • Date: 2006-02-15 08:11:37 UTC
  • mto: (1534.1.24 integration)
  • mto: This revision was merged to the branch mainline in revision 1554.
  • Revision ID: robertc@robertcollins.net-20060215081137-4c27377517e96dd1
Make format 4/5/6 branches share a single LockableFiles instance across wt/branch/repository.

Show diffs side-by-side

added added

removed removed

Lines of Context:
170
170
        pause()
171
171
        sha = tree.get_file_sha1(tree.path2id('hello.txt'))
172
172
        self.assertEqual(1, tree._hashcache.miss_count)
173
 
        tree2 = WorkingTree.open('.', tree.branch)
 
173
        tree2 = WorkingTree.open('.')
174
174
        sha2 = tree2.get_file_sha1(tree2.path2id('hello.txt'))
175
175
        self.assertEqual(0, tree2._hashcache.miss_count)
176
176
        self.assertEqual(1, tree2._hashcache.hit_count)