summaryrefslogtreecommitdiff
path: root/test/parallel/test-domain-http-server.js
diff options
context:
space:
mode:
authorcdnadmin <cdnadmin@collaborare.net>2016-12-01 11:09:34 -0600
committerJames M Snell <jasnell@gmail.com>2016-12-05 13:35:01 -0800
commit40daf6bccf437231c2669ea197264a808462456c (patch)
tree804d96e1216327cdd66a5a10ad82c47aff5e45e6 /test/parallel/test-domain-http-server.js
parent72db343be22123cb5fa660884d2e4a37e3e16034 (diff)
downloadnode-new-40daf6bccf437231c2669ea197264a808462456c.tar.gz
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>
Diffstat (limited to 'test/parallel/test-domain-http-server.js')
-rw-r--r--test/parallel/test-domain-http-server.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-domain-http-server.js b/test/parallel/test-domain-http-server.js
index e6e4b294cf..26264e8ec9 100644
--- a/test/parallel/test-domain-http-server.js
+++ b/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');
});