test: fix typo in inspector-helper.js

PR-URL: https://github.com/nodejs/node/pull/36127
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
This commit is contained in:
Luigi Pinca 2020-11-15 08:37:14 +01:00 committed by Beth Griggs
parent 3e77536c6b
commit a563f79d80
No known key found for this signature in database
GPG Key ID: D7062848A1AB005C

View File

@ -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);
}