Skip to content

Commit d20318d

Browse files
author
Shakeel Mohamed
committed
Fix a broken search commands test, removed some debug statements
1 parent 9454112 commit d20318d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/searchcommands/test_search_command_internals.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ def test_command_parser_unquote(self):
230230
'"\\\\foobar"',
231231
'"foo \\\\ bar"',
232232
'"foobar\\\\"',
233-
'foo\\\\\\bar'
233+
'foo\\bar'
234234
]
235235

236236
expected = [
@@ -247,8 +247,6 @@ def test_command_parser_unquote(self):
247247
]
248248

249249
for i in range(0, len(options)):
250-
print parser.unquote(options[i]), " ", options[i]
251-
print expected[i]
252250
self.assertEqual(expected[i], parser.unquote(options[i]))
253251

254252

0 commit comments

Comments
 (0)