diff options
Diffstat (limited to 'test/parallel/test-util-log.js')
-rw-r--r-- | test/parallel/test-util-log.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-util-log.js b/test/parallel/test-util-log.js index d45ebf2fc0..3604b42820 100644 --- a/test/parallel/test-util-log.js +++ b/test/parallel/test-util-log.js @@ -32,7 +32,7 @@ tests.forEach(function(test) { const re = (/[0-9]{1,2} [A-Z][a-z]{2} [0-9]{2}:[0-9]{2}:[0-9]{2} - (.+)$/); const match = re.exec(result); assert.ok(match); - assert.equal(match[1], test.output); + assert.strictEqual(match[1], test.output); }); global.process.stdout.write = stdout_write; |