diff --git a/test/parallel/test-domain-multi.js b/test/parallel/test-domain-multi.js
index 1b0af1dd3f438f..cf85dbca460146 100644
--- a/test/parallel/test-domain-multi.js
+++ b/test/parallel/test-domain-multi.js
@@ -70,8 +70,8 @@ var server = http.createServer(function(req, res) {
 });
 
 process.on('exit', function() {
-  assert.equal(caughtA, false);
-  assert.equal(caughtB, true);
-  assert.equal(caughtC, true);
+  assert.strictEqual(caughtA, false);
+  assert.strictEqual(caughtB, true);
+  assert.strictEqual(caughtC, true);
   console.log('ok - Errors went where they were supposed to go');
 });