/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/per_workingtree/__init__.py

  • Committer: Jelmer Vernooij
  • Date: 2011-01-11 04:33:12 UTC
  • mto: (5582.12.2 weave-plugin)
  • mto: This revision was merged to the branch mainline in revision 5718.
  • Revision ID: jelmer@samba.org-20110111043312-g4wx6iuf9662f36d
Move weave formats into bzrlib.plugins.weave_fmt.

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
 
70
70
def workingtree_formats():
71
71
    """The known working tree formats."""
72
 
    return (workingtree.WorkingTreeFormat._formats.values() +
73
 
        workingtree._legacy_formats)
 
72
    from bzrlib.plugins.weave_fmt.workingtree import _legacy_formats as weave_formats
 
73
    return (workingtree.WorkingTreeFormat._formats.values() + weave_formats)
74
74
 
75
75
 
76
76
def load_tests(standard_tests, module, loader):