/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/per_workingtree/test_readonly.py

  • Committer: Vincent Ladeuil
  • Date: 2011-07-06 09:22:00 UTC
  • mfrom: (6008 +trunk)
  • mto: (6012.1.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 6013.
  • Revision ID: v.ladeuil+lp@free.fr-20110706092200-7iai2mwzc0sqdsvf
MergingĀ inĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
import time
22
22
 
23
23
from bzrlib import (
24
 
    errors,
25
24
    hashcache,
26
25
    tests,
27
26
    )
106
105
            if hack_dirstate:
107
106
                tree._dirstate._sha_cutoff_time = self._custom_cutoff_time
108
107
            # Make sure we check all the files
109
 
            for file_id in tree:
 
108
            for file_id in tree.all_file_ids():
110
109
                size = tree.get_file_size(file_id)
111
110
                sha1 = tree.get_file_sha1(file_id)
112
111
        finally: