~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/per_branch/__init__.py

Merge pt1 hooks branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
    tests,
30
30
    )
31
31
from bzrlib.branch import (BranchFormat,
32
 
                           _legacy_formats,
33
32
                           )
34
33
from bzrlib.remote import RemoteBranchFormat, RemoteBzrDirFormat
35
34
from bzrlib.tests import test_server
132
131
    # Generate a list of branch formats and their associated bzrdir formats to
133
132
    # use.
134
133
    combinations = [(format, format._matchingbzrdir) for format in
135
 
         BranchFormat.get_formats() + _legacy_formats]
 
134
         BranchFormat.get_formats()]
136
135
    scenarios = make_scenarios(
137
136
        # None here will cause the default vfs transport server to be used.
138
137
        None,