~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Jelmer Vernooij
  • Date: 2011-01-11 04:33:12 UTC
  • mto: (5582.12.2 weave-plugin)
  • mto: This revision was merged to the branch mainline in revision 5718.
  • Revision ID: jelmer@samba.org-20110111043312-g4wx6iuf9662f36d
Move weave formats into bzrlib.plugins.weave_fmt.

Show diffs side-by-side

added added

removed removed

Lines of Context:
83
83
 
84
84
    def make_obsolete_repo(self, path):
85
85
        # We don't want the deprecation raising during the repo creation
86
 
        tree = self.make_branch_and_tree(path, format=bzrdir.BzrDirFormat5())
 
86
        from bzrlib.plugins.weave_fmt.bzrdir import BzrDirFormat5
 
87
        tree = self.make_branch_and_tree(path, format=BzrDirFormat5())
87
88
        return tree
88
89
 
89
90
    def check_warning(self, present):