Skip to content
This repository was archived by the owner on Oct 15, 2020. It is now read-only.

Commit 4cfa823

Browse files
committed
lint: fix lint issue introduced by bad merge
1 parent fca1d9f commit 4cfa823

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/parallel/test-cli-node-options.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ if (!common.isChakraEngine) {
3737
expect('--abort_on-uncaught_exception', 'B\n');
3838
expect('--max-old-space-size=0', 'B\n');
3939
expect('--stack-trace-limit=100',
40-
/(\s*at f \(\[eval\]:1:\d*\)\r?\n){100}/,
41-
'(function f() { f(); })();',
42-
true);
40+
/(\s*at f \(\[eval\]:1:\d*\)\r?\n){100}/,
41+
'(function f() { f(); })();',
42+
true);
4343
}
4444

4545
function expect(opt, want, command = 'console.log("B")', wantsError = false) {

0 commit comments

Comments
 (0)