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

  • Committer: Robert Collins
  • Date: 2008-07-28 06:08:42 UTC
  • mfrom: (3581 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3584.
  • Revision ID: robertc@robertcollins.net-20080728060842-uayjy217i066dvct
MergeĀ .dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
def preview_tree_pre(testcase, tree):
75
75
    tt = TransformPreview(tree)
76
76
    testcase.addCleanup(tt.finalize)
77
 
    return tt.get_preview_tree()
 
77
    preview_tree = tt.get_preview_tree()
 
78
    preview_tree.set_parent_ids(tree.get_parent_ids())
 
79
    return preview_tree
78
80
 
79
81
 
80
82
class TestTreeImplementationSupport(TestCaseWithTransport):