~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/per_workingtree/test_readonly.py

  • Committer: Jelmer Vernooij
  • Date: 2011-05-08 13:07:11 UTC
  • mto: This revision was merged to the branch mainline in revision 5843.
  • Revision ID: jelmer@samba.org-20110508130711-idrk0wq7aj3d7vq6
Fix more uses of Tree.__iter__

Show diffs side-by-side

added added

removed removed

Lines of Context:
105
105
            if hack_dirstate:
106
106
                tree._dirstate._sha_cutoff_time = self._custom_cutoff_time
107
107
            # Make sure we check all the files
108
 
            for file_id in tree:
 
108
            for file_id in tree.all_file_ids():
109
109
                size = tree.get_file_size(file_id)
110
110
                sha1 = tree.get_file_sha1(file_id)
111
111
        finally: