~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

Merge pt1 hooks branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
from bzrlib.transform import TransformPreview
40
40
from bzrlib.workingtree import (
41
41
    WorkingTreeFormat,
42
 
    _legacy_formats,
43
42
    )
44
43
from bzrlib.workingtree_4 import (
45
44
    DirStateRevisionTree,
398
397
        # None here will cause a readonly decorator to be created
399
398
        # by the TestCaseWithTransport.get_readonly_transport method.
400
399
        None,
401
 
        WorkingTreeFormat._formats.values() + _legacy_formats)
 
400
        WorkingTreeFormat.get_formats())
402
401
    # add the tests for the sub modules
403
402
    return tests.multiply_tests(submod_tests, scenarios, standard_tests)