Skip to content

Commit

Permalink
test: use strictEqual() domain-http
Browse files Browse the repository at this point in the history
did this at nina 2016 na code and learn event

PR-URL: nodejs#9996
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
cdnadmin authored and addaleax committed Dec 8, 2016
1 parent ced89ed commit fe59a67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/parallel/test-domain-http-server.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
});

0 comments on commit fe59a67

Please sign in to comment.