From 1b438a773764d72bbe4aea0e99359db97193e57d Mon Sep 17 00:00:00 2001 From: Palash Nigam Date: Sat, 14 Apr 2018 19:30:17 +0530 Subject: [PATCH] test: removes string literals from test-domain-timer.js String literals from two `assert.strictEquals()` calls were removed as these string literals did not match the value of `e.message` when an `AssertionError` occurred. Now the default error message is displayed when an error occurs. PR-URL: https://github.com/nodejs/node/pull/20120 Reviewed-By: Benjamin Gruenbaum Reviewed-By: Colin Ihrig Reviewed-By: Richard Lau Reviewed-By: Trivikram Kamat Reviewed-By: Rich Trott Reviewed-By: James M Snell Reviewed-By: Luigi Pinca --- test/parallel/test-domain-timers.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/test/parallel/test-domain-timers.js b/test/parallel/test-domain-timers.js index f9857a991af..b6883d8c223 100644 --- a/test/parallel/test-domain-timers.js +++ b/test/parallel/test-domain-timers.js @@ -27,8 +27,7 @@ const assert = require('assert'); const timeoutd = domain.create(); timeoutd.on('error', common.mustCall(function(e) { - assert.strictEqual(e.message, 'Timeout UNREFd', - 'Domain should catch timer error'); + assert.strictEqual(e.message, 'Timeout UNREFd'); clearTimeout(timeout); }, 2)); @@ -47,8 +46,7 @@ t.unref(); const immediated = domain.create(); immediated.on('error', common.mustCall(function(e) { - assert.strictEqual(e.message, 'Immediate Error', - 'Domain should catch immediate error'); + assert.strictEqual(e.message, 'Immediate Error'); })); immediated.run(function() {