diff --git a/test/parse.js b/test/parse.js index 7a9de19..3eb1e27 100644 --- a/test/parse.js +++ b/test/parse.js @@ -9,7 +9,7 @@ test('parse shell commands', function (t) { ); t.same(parse('a b\\ c d'), [ 'a', 'b c', 'd' ]); t.same(parse('\\$beep bo\\`op'), [ '$beep', 'bo`op' ]); - t.same(parse('echo "foo = \"foo\""'), [ 'echo', 'foo = "foo"' ]); + t.same(parse('echo "foo = \\"foo\\""'), [ 'echo', 'foo = "foo"' ]); t.end(); });