Browse Source

test: use strictEqual() domain-http

did this at nina 2016 na code and learn event

PR-URL: https://github.com/nodejs/node/pull/9996
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
v4.x
cdnadmin 8 years ago
committed by Myles Borins
parent
commit
98afba5676
  1. 4
      test/parallel/test-domain-http-server.js

4
test/parallel/test-domain-http-server.js

@ -88,7 +88,7 @@ function next() {
}
process.on('exit', function() {
assert.equal(serverCaught, 2);
assert.equal(clientCaught, 2);
assert.strictEqual(serverCaught, 2);
assert.strictEqual(clientCaught, 2);
console.log('ok');
});

Loading…
Cancel
Save