~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_upgrade.py

  • Committer: Jelmer Vernooij
  • Date: 2011-04-19 10:42:59 UTC
  • mto: This revision was merged to the branch mainline in revision 5806.
  • Revision ID: jelmer@samba.org-20110419104259-g9exlcp1f5jdu3ci
Move Inventory._get_mutable_inventory -> mutable_inventory_from_tree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
from bzrlib import (
26
26
    branch,
27
27
    bzrdir,
 
28
    repository,
28
29
    tests,
29
30
    upgrade,
30
31
    workingtree,
41
42
 
42
43
    def test_convert_branch5_branch6(self):
43
44
        b = self.make_branch('branch', format='knit')
44
 
        b._set_revision_history(['CD'])
 
45
        b.set_revision_history(['AB', 'CD'])
45
46
        b.set_parent('file:///EF')
46
47
        b.set_bound_location('file:///GH')
47
48
        b.set_push_location('file:///IJ')