/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_remove.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-11-29 08:48:51 UTC
  • mfrom: (3044.1.1 164476-default-format)
  • Revision ID: pqm@pqm.ubuntu.com-20071129084851-xoj1c3u42mxzy5bq
Fix up calls to TestCase.build_tree passing a string rather than a list

Show diffs side-by-side

added added

removed removed

Lines of Context:
85
85
 
86
86
    def test_remove_changed_file(self):
87
87
        """Removal of a changed files must fail."""
88
 
        tree = self.get_committed_tree('a')
 
88
        tree = self.get_committed_tree(['a'])
89
89
        self.build_tree_contents([('a', "some other new content!")])
90
90
        self.assertInWorkingTree('a')
91
91
        err = self.assertRaises(errors.BzrRemoveChangedFilesError, tree.remove,