/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

(broken) merge aaron's workingtree format changes

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
 
89
89
    # load the tests of the infrastructure for these tests
90
90
    result.addTests(loader.loadTestsFromModuleNames(['bzrlib.tests.intertree_implementations']))
91
91
 
92
 
    default_tree_format = WorkingTreeFormat.get_default_format()
 
92
    default_tree_format = WorkingTreeFormatAB1()
93
93
    test_intertree_implementations = [
94
94
        'bzrlib.tests.intertree_implementations.test_compare',
95
95
        ]