Commit fdac834d authored by Pierre-Antoine Rouby's avatar Pierre-Antoine Rouby
Browse files

Tests: Fix pep8.

Showing with 2 additions and 3 deletions
+2 -3
......@@ -79,15 +79,14 @@ class ToolsCMDParserTestCase(unittest.TestCase):
self.assertEqual(res[i], s)
def test_unix_escape_space(self):
cmd = "/foo/bar\ baz -a -b -c"
expect = ["/foo/bar\ baz", "-a", '-b', "-c"]
cmd = r"/foo/bar\ baz -a -b -c"
expect = [r"/foo/bar\ baz", "-a", '-b', "-c"]
res = parse_command_line(cmd)
for i, s in enumerate(expect):
self.assertEqual(res[i], s)
def test_windows_prog_files(self):
cmd = "\"C:\\Program Files (x86)\foo\bar\" a -b -c"
expect = ["C:\\Program Files (x86)\foo\bar", "a", '-b', "-c"]
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment