Skip to content

Commit

Permalink
test: use assert.strictEqual
Browse files Browse the repository at this point in the history
* use `assert.strictEqual`

PR-URL: #9975
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
  • Loading branch information
anoff authored and addaleax committed Dec 8, 2016
1 parent 72fb05d commit b67cad1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-debug-port-from-cmdline.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function assertOutputLines() {
'Debugger listening on 127.0.0.1:' + debugPort,
];

assert.equal(outputLines.length, expectedLines.length);
assert.strictEqual(outputLines.length, expectedLines.length);
for (var i = 0; i < expectedLines.length; i++)
assert(expectedLines[i].includes(outputLines[i]));
}

0 comments on commit b67cad1

Please sign in to comment.