/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/test_add_reference.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:
19
19
from bzrlib import errors, tests, workingtree, workingtree_4
20
20
from bzrlib.tests.per_workingtree import TestCaseWithWorkingTree
21
21
 
22
 
TREES_NOT_SUPPORTING_REFERENCES = (workingtree.WorkingTree2,
 
22
from bzrlib.plugins.weave_fmt.workingtree import WorkingTree2
 
23
 
 
24
 
 
25
TREES_NOT_SUPPORTING_REFERENCES = (WorkingTree2,
23
26
                                   workingtree.WorkingTree3,
24
27
                                   workingtree_4.WorkingTree4)
25
28