~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_foreign.py

Merge hpss-call-counts branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
313
313
        self.root_transport.put_bytes(".bzr", "foo")
314
314
        return super(DummyForeignVcsDir, self).create_workingtree()
315
315
 
316
 
    def open_branch(self, name=None, unsupported=False, ignore_fallbacks=True):
 
316
    def open_branch(self, name=None, unsupported=False, ignore_fallbacks=True,
 
317
            possible_transports=None):
317
318
        if name is not None:
318
319
            raise errors.NoColocatedBranchSupport(self)
319
320
        return self._format.get_branch_format().open(self, _found=True)