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

  • Committer: Martin Pool
  • Date: 2007-08-20 07:54:29 UTC
  • mto: This revision was merged to the branch mainline in revision 2737.
  • Revision ID: mbp@sourcefrog.net-20070820075429-qf292u06r16ezx8x
Fix up conversion of create_repository to make_repository in test_fetch

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
        tree_a.add('foo', 'file1')
38
38
        tree_a.commit('rev1', rev_id='rev1')
39
39
        # fetch with a default limit (grab everything)
40
 
        repo = self.make_repository(self.get_url('b'))
 
40
        repo = self.make_repository('b')
41
41
        if (tree_a.branch.repository.supports_rich_root() and not
42
42
            repo.supports_rich_root()):
43
43
            raise TestSkipped('Cannot fetch from model2 to model1')