aboutsummaryrefslogtreecommitdiff
path: root/test/sequential/test-deprecation-flags.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/sequential/test-deprecation-flags.js')
-rw-r--r--test/sequential/test-deprecation-flags.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sequential/test-deprecation-flags.js b/test/sequential/test-deprecation-flags.js
index dd41614f7f..61a3d84ece 100644
--- a/test/sequential/test-deprecation-flags.js
+++ b/test/sequential/test-deprecation-flags.js
@@ -61,7 +61,7 @@ execFile(node, traceDep, function(er, stdout, stderr) {
assert.strictEqual(er, null);
assert.strictEqual(stdout, '');
const stack = stderr.trim().split('\n');
- // just check the top and bottom.
+ // Just check the top and bottom.
assert(/this function is deprecated/.test(stack[1]));
assert(/This is deprecated/.test(stack[0]));
console.log('trace ok');