Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
test: use strictEqual() domain-http
did this at nina 2016 na code and learn event
  • Loading branch information
cdnadmin committed Dec 1, 2016
commit 03797aa35f35cff70b67673aa7664ced91fdb00b
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');
});