Skip to content

Commit b67cad1

Browse files
anoffaddaleax
authored andcommitted
test: use assert.strictEqual
* use `assert.strictEqual` PR-URL: #9975 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
1 parent 72fb05d commit b67cad1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-debug-port-from-cmdline.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ function assertOutputLines() {
4242
'Debugger listening on 127.0.0.1:' + debugPort,
4343
];
4444

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

0 commit comments

Comments
 (0)