From a563f79d8051b17bf94722679d74215eb53ca46c Mon Sep 17 00:00:00 2001 From: Luigi Pinca Date: Sun, 15 Nov 2020 08:37:14 +0100 Subject: [PATCH] test: fix typo in inspector-helper.js MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/36127 Reviewed-By: Michaƫl Zasso Reviewed-By: Gireesh Punathil Reviewed-By: Daijiro Wachi Reviewed-By: Colin Ihrig Reviewed-By: Rich Trott --- test/common/inspector-helper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/common/inspector-helper.js b/test/common/inspector-helper.js index 5aea807b7c0b81..666624490e79a9 100644 --- a/test/common/inspector-helper.js +++ b/test/common/inspector-helper.js @@ -228,7 +228,7 @@ class InspectorSession { waitForNotification(methodOrPredicate, description) { const desc = description || methodOrPredicate; - const message = `Timed out waiting for matching notification (${desc}))`; + const message = `Timed out waiting for matching notification (${desc})`; return fires( this._asyncWaitForNotification(methodOrPredicate), message, TIMEOUT); }