~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/per_controldir_colo/test_unsupported.py

  • Committer: Patch Queue Manager
  • Date: 2012-01-28 13:24:39 UTC
  • mfrom: (6450.1.1 bzr.dev)
  • Revision ID: pqm@pqm.ubuntu.com-20120128132439-phvlss4cq7bf5rji
(jelmer) Merge the 2.5 branch. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
            raise tests.TestNotApplicable('Control dir format not supported')
41
41
        t = self.get_transport()
42
42
        try:
43
 
            made_control = self.bzrdir_format.initialize(t.base)
 
43
            made_control = self.make_bzrdir('.', format=self.bzrdir_format)
44
44
        except errors.UninitializableFormat:
45
45
            raise tests.TestNotApplicable('Control dir format not initializable')
 
46
        self.assertEquals(made_control._format, self.bzrdir_format)
46
47
        made_repo = made_control.create_repository()
47
48
        return made_control
48
49