/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: Aaron Bentley
  • Date: 2007-09-13 01:54:49 UTC
  • mfrom: (2817 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2826.
  • Revision ID: aaron.bentley@utoronto.ca-20070913015449-bjjw2njf3in5roq7
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