~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Jelmer Vernooij
  • Date: 2010-08-21 16:06:24 UTC
  • mto: This revision was merged to the branch mainline in revision 5389.
  • Revision ID: jelmer@samba.org-20100821160624-qer8toywwwxeqkmx
Rename TestCaseWithBzrDir -> TestCaseWithControlDir.

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
    return result
57
57
 
58
58
 
59
 
class TestCaseWithBzrDir(TestCaseWithTransport):
 
59
class TestCaseWithControlDir(TestCaseWithTransport):
60
60
 
61
61
    def setUp(self):
62
 
        super(TestCaseWithBzrDir, self).setUp()
 
62
        super(TestCaseWithControlDir, self).setUp()
63
63
        self.bzrdir = None
64
64
 
65
65
    def get_bzrdir(self):
70
70
    def make_bzrdir(self, relpath, format=None):
71
71
        if format is None:
72
72
            format = self.bzrdir_format
73
 
        return super(TestCaseWithBzrDir, self).make_bzrdir(
 
73
        return super(TestCaseWithControlDir, self).make_bzrdir(
74
74
            relpath, format=format)
75
75
 
76
76