~gz/bzr/resolve_auto_refactor

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_bzrdir.py

  • Committer: Patch Queue Manager
  • Date: 2012-07-09 14:21:36 UTC
  • mfrom: (6517.1.6 branchfmt)
  • Revision ID: pqm@pqm.ubuntu.com-20120709142136-1n4cd6jem06qs0s5
(jelmer) Move the old branch format 5 into a separate module. (Jelmer
 Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
    revision as _mod_revision,
36
36
    osutils,
37
37
    remote,
38
 
    symbol_versioning,
39
38
    transport as _mod_transport,
40
39
    urlutils,
41
40
    win32utils,
43
42
    workingtree_4,
44
43
    )
45
44
import bzrlib.branch
 
45
from bzrlib.branchfmt.fullhistory import BzrBranchFormat5
46
46
from bzrlib.errors import (
47
47
    NotBranchError,
48
48
    NoColocatedBranchSupport,
992
992
        branch_base = t.clone('branch').base
993
993
        self.assertEqual(branch_base, dir.get_branch_transport(None).base)
994
994
        self.assertEqual(branch_base,
995
 
                         dir.get_branch_transport(bzrlib.branch.BzrBranchFormat5()).base)
 
995
                         dir.get_branch_transport(BzrBranchFormat5()).base)
996
996
        repository_base = t.clone('repository').base
997
997
        self.assertEqual(repository_base, dir.get_repository_transport(None).base)
998
998
        repository_format = repository.format_registry.get_default()