/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/workingtree_implementations/test_inv.py

  • Committer: Alexander Belchenko
  • Date: 2007-09-05 08:18:57 UTC
  • mfrom: (2799 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2800.
  • Revision ID: bialix@ukr.net-20070905081857-me1osc2lpuzq6ur1
merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
        self.assertEqual(len(wt.inventory), 2)
40
40
        wt.flush() # workaround revert doing wt._write_inventory for now.
41
41
        os.unlink('b1/a')
42
 
        wt.revert([])
 
42
        wt.revert()
43
43
        self.assertEqual(len(wt.inventory), 1)
44
44
 
45
45