Skip to content

Commit 6cd4ff3

Browse files
committed
Fix command-line-options-test
<keyed-option> requires whitespace around the "=" in order to parse correctly.
1 parent 943e9df commit 6cd4ff3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test-command-line.dylan

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ define test command-line-options-test ()
99
list("--debug=crashes", debug-runner?, #"crashes", #f),
1010
list("--debug=failures", debug-runner?, #t, #f),
1111
list("--debug=foo", debug-runner?, #f, #t),
12-
list("key1=val1 key2=val2", runner-options,
12+
list("--options key1 = val1 --options key2 = val2", runner-options,
1313
tabling(<string-table>, "key1" => "val1", "key2" => "val2"),
1414
#f),
1515
list("key", runner-options, #f, #t) // error, not key=val form

0 commit comments

Comments
 (0)