From 0f3a8073f0cb41bf37ead94ac52587f937811966 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 31 Aug 2014 13:23:40 -0400 Subject: [PATCH] Unit Tests - Removed unnecessary backslashes in the unit test. It was confusing and testing the wrong thing. --- test/tw-268.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/tw-268.t b/test/tw-268.t index c6c8933ab..6fbd12c55 100755 --- a/test/tw-268.t +++ b/test/tw-268.t @@ -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)