Skip to content

Commit 018375c

Browse files
twk-btniessen
authored andcommitted
test: remove message from notStrictEqual
PR-URL: #16048 Reviewed-By: James Snell <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Gibson Fahnestock <[email protected]>
1 parent 4247913 commit 018375c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-domain-http-server.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ const server = http.createServer(function(req, res) {
5151
const data = JSON.stringify(objects[req.url.replace(/[^a-z]/g, '')]);
5252

5353
// this line will throw if you pick an unknown key
54-
assert.notStrictEqual(data, undefined, 'Data should not be undefined');
54+
assert.notStrictEqual(data, undefined);
5555

5656
res.writeHead(200);
5757
res.end(data);

0 commit comments

Comments
 (0)