/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/test_bundle.py

  • Committer: John Arbash Meinel
  • Date: 2006-08-14 22:53:25 UTC
  • mfrom: (1920 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1923.
  • Revision ID: john@arbash-meinel.com-20060814225325-6626efb06d6d33e9
[merge] bzr.dev 1920

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
 
39
39
class MockTree(object):
40
40
    def __init__(self):
41
 
        from bzrlib.inventory import RootEntry, ROOT_ID
 
41
        from bzrlib.inventory import InventoryDirectory, ROOT_ID
42
42
        object.__init__(self)
43
43
        self.paths = {ROOT_ID: ""}
44
44
        self.ids = {"": ROOT_ID}
45
45
        self.contents = {}
46
 
        self.root = RootEntry(ROOT_ID)
 
46
        self.root = InventoryDirectory(ROOT_ID, '', None)
47
47
 
48
48
    inventory = property(lambda x:x)
49
49