From 5070c6d71683ad8e82e8b390c48f2ea90d153026 Mon Sep 17 00:00:00 2001 From: Willi Goesgens Date: Thu, 11 Jun 2015 13:29:31 +0200 Subject: [PATCH] Fix arguments. --- js/server/modules/org/arangodb/testing.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/server/modules/org/arangodb/testing.js b/js/server/modules/org/arangodb/testing.js index 20a046d516..a828e24f45 100644 --- a/js/server/modules/org/arangodb/testing.js +++ b/js/server/modules/org/arangodb/testing.js @@ -262,10 +262,10 @@ function makeTestingArgsClient (options) { var topDir = findTopDir(); return { "configuration": "none", "javascript.startup-directory": fs.join(topDir, "js"), - "no-colors": true, - "quiet": true, "server.username": options.username, - "server.password": options.password }; + "server.password": options.password, + "flatCommands": ["--no-colors", "--quiet"] + }; } function makeAuthorisationHeaders (options) {