Skip to content

Commit 9d7b727

Browse files
author
James Halliday
committed
actually the test was wrong, module works fine
1 parent 8dbb280 commit 9d7b727

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/parse.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ test('parse shell commands', function (t) {
99
);
1010
t.same(parse('a b\\ c d'), [ 'a', 'b c', 'd' ]);
1111
t.same(parse('\\$beep bo\\`op'), [ '$beep', 'bo`op' ]);
12-
t.same(parse('echo "foo = \"foo\""'), [ 'echo', 'foo = "foo"' ]);
12+
t.same(parse('echo "foo = \\"foo\\""'), [ 'echo', 'foo = "foo"' ]);
1313

1414
t.end();
1515
});

0 commit comments

Comments
 (0)