Unit Tests

- Removed unnecessary backslashes in the unit test.  It was confusing and
  testing the wrong thing.
This commit is contained in:
Paul Beckingham 2014-08-31 13:23:40 -04:00
parent 90643635cd
commit 0f3a8073f0

View file

@ -42,7 +42,7 @@ class TestBug268(TestCase):
"""escaped backslashes do not work with 'modify'"""
self.t(("add", "a", "b", "or", "c"))
self.t(("1", "modify", "/a\\ b/a\\/b/"))
self.t(("1", "modify", "/a b/a\/b/"))
code, out, err = self.t(("1", "info"))
self.assertIn("a/b or c", out)