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 <jasnell@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
  • Loading branch information
twk-b authored and MylesBorins committed Nov 28, 2017
1 parent fafbbb6 commit 0689ea6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-domain-http-server.js
Expand Up @@ -30,7 +30,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 0689ea6

Please sign in to comment.