/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

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

Merge from by-reference-trees

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
    TestCaseWithTree,
37
37
    )
38
38
from bzrlib.tree import InterTree
39
 
from bzrlib.workingtree import (WorkingTreeFormat,
 
39
from bzrlib.workingtree import (WorkingTreeFormatAB1,
40
40
                                WorkingTreeTestProviderAdapter,
41
41
                                )
42
42
 
102
102
    # load the tests of the infrastructure for these tests
103
103
    result.addTests(loader.loadTestsFromModuleNames(['bzrlib.tests.intertree_implementations']))
104
104
 
105
 
    default_tree_format = WorkingTreeFormat.get_default_format()
 
105
    default_tree_format = WorkingTreeFormatAB1()
106
106
    test_intertree_implementations = [
107
107
        'bzrlib.tests.intertree_implementations.test_compare',
108
108
        ]