We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fafbbb6 commit 0689ea6Copy full SHA for 0689ea6
test/parallel/test-domain-http-server.js
@@ -30,7 +30,7 @@ const server = http.createServer(function(req, res) {
30
const data = JSON.stringify(objects[req.url.replace(/[^a-z]/g, '')]);
31
32
// this line will throw if you pick an unknown key
33
- assert.notStrictEqual(data, undefined, 'Data should not be undefined');
+ assert.notStrictEqual(data, undefined);
34
35
res.writeHead(200);
36
res.end(data);
0 commit comments