/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/tests/per_interrepository/test_fetch.py

  • Committer: Jelmer Vernooij
  • Date: 2017-12-03 22:21:17 UTC
  • mfrom: (6825.5.2 all-paths)
  • Revision ID: jelmer@jelmer.uk-20171203222117-strqpyuxkux0oomt
Merge lp:~jelmer/brz/all-paths.

Show diffs side-by-side

added added

removed removed

Lines of Context:
78
78
            tree.lock_read()
79
79
            self.addCleanup(tree.unlock)
80
80
            tree.get_file_text('foo')
81
 
            for file_id in tree.all_file_ids():
82
 
                if tree.kind(tree.id2path(file_id)) == "file":
83
 
                    tree.get_file(tree.id2path(file_id)).read()
 
81
            for path in tree.all_versioned_paths():
 
82
                if tree.kind(path) == "file":
 
83
                    tree.get_file(path).read()
84
84
 
85
85
        # makes a target version repo
86
86
        repo_b = self.make_to_repository('b')