/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/branch_implementations/__init__.py

Merge bzr.dev 3915

Show diffs side-by-side

added added

removed removed

Lines of Context:
101
101
        except errors.UninitializableFormat:
102
102
            raise tests.TestSkipped('Uninitializable branch format')
103
103
 
 
104
    def make_branch_builder(self, relpath, format=None):
 
105
        if format is None:
 
106
            format = self.branch_format._matchingbzrdir
 
107
        return super(TestCaseWithBranch, self).make_branch_builder(
 
108
            relpath, format=format)
 
109
 
104
110
    def make_repository(self, relpath, shared=False, format=None):
105
111
        made_control = self.make_bzrdir(relpath, format=format)
106
112
        return made_control.create_repository(shared=shared)