~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_init.py

  • Committer: Martin Pool
  • Date: 2010-06-11 07:32:12 UTC
  • mto: This revision was merged to the branch mainline in revision 5309.
  • Revision ID: mbp@canonical.com-20100611073212-w3cz2yachitiiz2c
Update remaining subclasses of ExternalBase

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
    )
28
28
from bzrlib.bzrdir import BzrDirMetaFormat1
29
29
from bzrlib.tests import TestSkipped
30
 
from bzrlib.tests.blackbox import ExternalBase
 
30
from bzrlib.tests import TestCaseWithTransport
31
31
from bzrlib.tests.test_sftp_transport import TestCaseWithSFTPServer
32
32
from bzrlib.workingtree import WorkingTree
33
33
 
34
34
 
35
 
class TestInit(ExternalBase):
 
35
class TestInit(TestCaseWithTransport):
36
36
 
37
37
    def setUp(self):
38
 
        ExternalBase.setUp(self)
 
38
        TestCaseWithTransport.setUp(self)
39
39
        self._default_label = '2a'
40
40
 
41
41
    def test_init_with_format(self):