~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Vincent Ladeuil
  • Date: 2010-06-23 08:19:28 UTC
  • mfrom: (5317 +trunk)
  • mto: (5247.1.11 first-try)
  • mto: This revision was merged to the branch mainline in revision 5326.
  • Revision ID: v.ladeuil+lp@free.fr-20100623081928-z9q18q30oo5as831
Merge bzr.dev into cleanup

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):