~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/per_branch/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2011-09-19 18:25:05 UTC
  • mto: This revision was merged to the branch mainline in revision 6152.
  • Revision ID: jelmer@samba.org-20110919182505-rlc92f42qh4gnrjb
Make various make_repository methods default their shared setting to None.

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
        return super(TestCaseWithBranch, self).make_branch_builder(
92
92
            relpath, format=format)
93
93
 
94
 
    def make_repository(self, relpath, shared=False, format=None):
 
94
    def make_repository(self, relpath, shared=None, format=None):
95
95
        made_control = self.make_bzrdir(relpath, format=format)
96
96
        return made_control.create_repository(shared=shared)
97
97