Skip to content
This repository has been archived by the owner on Aug 31, 2018. It is now read-only.

Commit

Permalink
test: remove message from notStrictEqual
Browse files Browse the repository at this point in the history
PR-URL: nodejs/node#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 addaleax committed Oct 15, 2017
1 parent 4bcff09 commit 7faec82
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 @@ -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 7faec82

Please sign in to comment.