/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

  • Committer: Aaron Bentley
  • Date: 2007-01-12 04:48:18 UTC
  • mto: (2255.6.1 dirstate)
  • mto: This revision was merged to the branch mainline in revision 2322.
  • Revision ID: aaron.bentley@utoronto.ca-20070112044818-nnw6iunriqq073qc
Implement tree comparison for tree references

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 (WorkingTreeFormat4,
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 = WorkingTreeFormat4()
106
106
    test_intertree_implementations = [
107
107
        'bzrlib.tests.intertree_implementations.test_compare',
108
108
        ]