~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Patch Queue Manager
  • Date: 2015-12-17 18:39:00 UTC
  • mfrom: (6606.1.2 fix-float)
  • Revision ID: pqm@pqm.ubuntu.com-20151217183900-0719du2uv1kwu3lc
(vila) Inline testtools private method to fix an issue in xenial (the
 private implementation has changed in an backward incompatible way).
 (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
            self.bzrdir = self.make_bzrdir(None)
68
68
        return self.bzrdir
69
69
 
70
 
    def make_bzrdir(self, relpath, format=None):
71
 
        if format is None:
72
 
            format = self.bzrdir_format
73
 
        return super(TestCaseWithControlDir, self).make_bzrdir(
74
 
            relpath, format=format)
 
70
    def get_default_format(self):
 
71
        return self.bzrdir_format
75
72
 
76
73
 
77
74
def load_tests(standard_tests, module, loader):