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

  • Committer: Jelmer Vernooij
  • Date: 2017-11-12 17:53:35 UTC
  • mto: This revision was merged to the branch mainline in revision 6819.
  • Revision ID: jelmer@jelmer.uk-20171112175335-d3l6b9sy2qzp27mk
Swap arguments for get_file_*.

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
        tree = b2.repository.revision_tree(rev1)
43
43
        tree.lock_read()
44
44
        self.addCleanup(tree.unlock)
45
 
        self.assertEqual(
46
 
                tree.get_file_text(tree.path2id('foo'), 'foo'),
47
 
                'hello')
 
45
        self.assertEqual(tree.get_file_text('foo'), 'hello')
48
46
 
49
47
    def test_fetch_revisions_limit(self):
50
48
        """Test fetch-revision operation."""