Unit Tests
- Removed unnecessary backslashes in the unit test. It was confusing and testing the wrong thing.
This commit is contained in:
@@ -42,7 +42,7 @@ class TestBug268(TestCase):
|
|||||||
"""escaped backslashes do not work with 'modify'"""
|
"""escaped backslashes do not work with 'modify'"""
|
||||||
|
|
||||||
self.t(("add", "a", "b", "or", "c"))
|
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"))
|
code, out, err = self.t(("1", "info"))
|
||||||
self.assertIn("a/b or c", out)
|
self.assertIn("a/b or c", out)
|
||||||
|
|||||||
Reference in New Issue
Block a user