summaryrefslogtreecommitdiff
path: root/test/sequential/test-cli-syntax-file-not-found.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/sequential/test-cli-syntax-file-not-found.js')
-rw-r--r--test/sequential/test-cli-syntax-file-not-found.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sequential/test-cli-syntax-file-not-found.js b/test/sequential/test-cli-syntax-file-not-found.js
index b90033a396..2bfb0e38c7 100644
--- a/test/sequential/test-cli-syntax-file-not-found.js
+++ b/test/sequential/test-cli-syntax-file-not-found.js
@@ -30,7 +30,7 @@ const notFoundRE = /^Error: Cannot find module/m;
// no stdout should be produced
assert.strictEqual(stdout, '');
- // stderr should have a module not found error message
+ // `stderr` should have a module not found error message.
assert(notFoundRE.test(stderr), `${notFoundRE} === ${stderr}`);
assert.strictEqual(err.code, 1,