/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/blackbox/test_reconcile.py

  • Committer: Jan Balster
  • Date: 2006-08-15 12:39:42 UTC
  • mfrom: (1923 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1928.
  • Revision ID: jan@merlinux.de-20060815123942-22c388c6e9a8ac91
merge bzr.dev 1923

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
import bzrlib
21
21
import bzrlib.bzrdir as bzrdir
 
22
from bzrlib.inventory import Inventory
22
23
import bzrlib.repository as repository
23
24
from bzrlib.tests import TestCaseWithTransport
24
25
from bzrlib.tests.blackbox import TestUIFactory
51
52
        t = bzrdir.BzrDir.create_standalone_workingtree('.')
52
53
        # an empty inventory with no revision will trigger reconciliation.
53
54
        repo = t.branch.repository
54
 
        inv = bzrlib.tree.EmptyTree().inventory
 
55
        inv = Inventory()
55
56
        repo.add_inventory('missing', inv, [])
56
57
        (out, err) = self.run_bzr_captured(['reconcile'])
57
58
        self.assertEqualDiff(out, "Reconciling repository %s\n"