hopefully this bundle address all the comments on the list.<br>The changes I made since the last patch are:<br><br>=== modified file 'bzrlib/tests/blackbox/test_remove.py'<br>--- bzrlib/tests/blackbox/test_remove.py 2007-05-06 01:47:14 +0000
<br>+++ bzrlib/tests/blackbox/test_remove.py 2007-06-23 19:45:17 +0000<br>@@ -116,7 +116,7 @@ class TestRemove(ExternalBase):<br> def test_remove_invalid_files(self):<br> self.build_tree(files)<br> tree =
self.make_branch_and_tree('.')<br>- self.run_bzr('remove . xyz abc/def')<br>+ self.run_bzr('remove', '.', 'xyz', 'abc/def')<br><br> def test_remove_unversioned_files(self):
<br> self.build_tree(files)<br>@@ -172,7 +172,7 @@ class TestRemove(ExternalBase):<br><br> def test_remove_non_existing_files(self):<br> tree = self._make_add_and_assert_tree([])<br>- self.run_bzr
('remove b')<br>+ self.run_bzr('remove', 'b')<br><br> def test_remove_keep_non_existing_files(self):<br> tree = self._make_add_and_assert_tree([])<br><br>=== modified file 'bzrlib/tests/workingtree_implementations/test_remove.py'
<br>--- bzrlib/tests/workingtree_implementations/test_remove.py 2007-06-23 17:59:22 +0000<br>+++ bzrlib/tests/workingtree_implementations/test_remove.py 2007-06-23 19:45:17 +0000<br>@@ -34,11 +34,9 @@ class TestRemove(TestCaseWithWorkingTree
<br> self.build_tree(TestRemove.files)<br> return tree<br><br>- def _assertRemoveErrorContainsRe(self, e, file_detail_re):<br>- # since assertContainsRe can't take a DOTALL parameter like<br>
- # normal re.match, use the following to disregard newlines<br>- err = ' '.join(str(e).split())<br>- self.assertContainsRe(err, 'Can\'t remove changed or unknown'<br>+ def _assertRemoveErrorContainsRe(self, exception, file_detail_re):
<br>+ self.assertContainsRe(str(exception),<br>+ '(?s)Can\'t remove changed or unknown'<br> ' files:.*' + file_detail_re)<br><br> def test_remove_keep(self):<br><br><br>
<br><div><span class="gmail_quote">On 6/22/07, <b class="gmail_sendername">Martin Pool</b> <<a href="mailto:mbp@canonical.com">mbp@canonical.com</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Martin Pool has voted +0.<br>Status is now: Waiting<br>Comment:<br>Comments on list.<br><br>For details, see:<br><a href="http://bundlebuggy.aaronbentley.com/request/%3C418c22640705062115x34c0f1fcl91c82a9d2d0659fb%40mail.gmail.com%3E">
http://bundlebuggy.aaronbentley.com/request/%3C418c22640705062115x34c0f1fcl91c82a9d2d0659fb%40mail.gmail.com%3E</a><br><br></blockquote></div><br><br clear="all"><br>-- <br><a href="http://bazaar-vcs.org">bazaar-vcs.org</a>
<br>Because I don't trust Version Control Systems with less than 6350 unit tests.