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

Commit

Permalink
lint: fix lint issue introduced by bad merge
Browse files Browse the repository at this point in the history
  • Loading branch information
jackhorton committed Nov 9, 2017
1 parent fca1d9f commit 4cfa823
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/parallel/test-cli-node-options.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 4cfa823

Please sign in to comment.