Skip to content

Commit

Permalink
test: remove message from notStrictEqual
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
twk-b authored and targos committed Oct 18, 2017
1 parent c23bf96 commit f9c1bcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-domain-http-server.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const server = http.createServer(function(req, res) {
const data = JSON.stringify(objects[req.url.replace(/[^a-z]/g, '')]);

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

res.writeHead(200);
res.end(data);
Expand Down

0 comments on commit f9c1bcb

Please sign in to comment.