We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4247913 commit 018375cCopy full SHA for 018375c
test/parallel/test-domain-http-server.js
@@ -51,7 +51,7 @@ const server = http.createServer(function(req, res) {
51
const data = JSON.stringify(objects[req.url.replace(/[^a-z]/g, '')]);
52
53
// this line will throw if you pick an unknown key
54
- assert.notStrictEqual(data, undefined, 'Data should not be undefined');
+ assert.notStrictEqual(data, undefined);
55
56
res.writeHead(200);
57
res.end(data);
0 commit comments