From 18eb929aa68d38c38d2d436437dce2505a8d4152 Mon Sep 17 00:00:00 2001 From: Alon Levy Date: Thu, 9 Oct 2014 15:10:18 +0300 Subject: test_analyzer: correct command line arguments --- tests/test_analyzer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/test_analyzer.js') diff --git a/tests/test_analyzer.js b/tests/test_analyzer.js index 9aede596..874eb9c3 100644 --- a/tests/test_analyzer.js +++ b/tests/test_analyzer.js @@ -52,7 +52,7 @@ function dump_graphviz(window) { } var done = function (errors, window) { - window.analyzeSentence(process.argv.join(" "), true); + window.analyzeSentence(process.argv.slice(2).join(" "), true); dump_graphviz(window); process.exit(); } -- cgit v1.3.1