From 4cfa82325604ef3cb18e69c97d8ff95248caa086 Mon Sep 17 00:00:00 2001 From: Jack Horton Date: Thu, 9 Nov 2017 14:52:50 -0800 Subject: [PATCH] lint: fix lint issue introduced by bad merge --- test/parallel/test-cli-node-options.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/parallel/test-cli-node-options.js b/test/parallel/test-cli-node-options.js index ef4f1019c35..daad488a0c7 100644 --- a/test/parallel/test-cli-node-options.js +++ b/test/parallel/test-cli-node-options.js @@ -37,9 +37,9 @@ if (!common.isChakraEngine) { expect('--abort_on-uncaught_exception', 'B\n'); expect('--max-old-space-size=0', 'B\n'); expect('--stack-trace-limit=100', - /(\s*at f \(\[eval\]:1:\d*\)\r?\n){100}/, - '(function f() { f(); })();', - true); + /(\s*at f \(\[eval\]:1:\d*\)\r?\n){100}/, + '(function f() { f(); })();', + true); } function expect(opt, want, command = 'console.log("B")', wantsError = false) {