/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-08-29 16:09:51 UTC
  • mto: (2796.1.1 bzr.ab.integration)
  • mto: This revision was merged to the branch mainline in revision 2797.
  • Revision ID: abentley@panoramicfeedback.com-20070829160951-jxts3918bwtbyutq
Fix revert, remove-tree, and various tests to use None for 'no files specified'

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