~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_reconcile.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-09-10 18:57:20 UTC
  • mfrom: (1910.2.48 format-bumps)
  • Revision ID: pqm@pqm.ubuntu.com-20060910185720-1bcc17b99fe77687
Add new format to support nested trees

Show diffs side-by-side

added added

removed removed

Lines of Context:
52
52
        t = bzrdir.BzrDir.create_standalone_workingtree('.')
53
53
        # an empty inventory with no revision will trigger reconciliation.
54
54
        repo = t.branch.repository
55
 
        inv = Inventory()
 
55
        inv = Inventory(revision_id='missing')
 
56
        inv.root.revision='missing'
56
57
        repo.add_inventory('missing', inv, [])
57
58
        (out, err) = self.run_bzr_captured(['reconcile'])
58
59
        self.assertEqualDiff(out, "Reconciling repository %s\n"