Skip to content

Commit dc2e1c9

Browse files
committed
Merge pull request open-source-parsers#111 from open-source-parsers/quotes-spaces-fixed
Quotes spaces fixed
2 parents 4ca9d25 + d98b5f4 commit dc2e1c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/runjsontests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def runAllTests( jsontest_executable_path, input_dir = None,
5454
is_json_checker_test = (input_path in test_jsonchecker) or expect_failure
5555
print('TESTING:', input_path, end=' ')
5656
options = is_json_checker_test and '--json-checker' or ''
57-
pipe = os.popen( "%s%s %s %s" % (
57+
pipe = os.popen( '%s%s %s "%s"' % (
5858
valgrind_path, jsontest_executable_path, options,
5959
input_path) )
6060
process_output = pipe.read()

0 commit comments

Comments
 (0)