Skip to content

Commit 033f41e

Browse files
committed
Finish rebase + update console label
1 parent ac53ee5 commit 033f41e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/parallel/test-console.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ common.expectWarning(
3636
'Warning',
3737
[
3838
['Count for \'noLabel\' does not exist', common.noWarnCode],
39-
['No such label \'nolabel\' for console.timeLog()', common.noWarnCode],
40-
['No such label \'nolabel\' for console.timeEnd()', common.noWarnCode],
39+
['No such label \'noLabel\' for console.timeLog()', common.noWarnCode],
40+
['No such label \'noLabel\' for console.timeEnd()', common.noWarnCode],
4141
['Label \'test\' already exists for console.time()', common.noWarnCode]
4242
]
4343
);
4444

4545
console.countReset('noLabel');
46-
console.timeLog('nolabel');
47-
console.timeEnd('nolabel');
46+
console.timeLog('noLabel');
47+
console.timeEnd('noLabel');
4848

4949
console.time('label');
5050
console.timeEnd('label');
@@ -247,6 +247,6 @@ common.hijackStderr(common.mustCall(function(data) {
247247

248248
// stderr.write will catch sync error, so use `process.nextTick` here
249249
process.nextTick(function() {
250-
assert.strictEqual(data.includes('nolabel'), true);
250+
assert.strictEqual(data.includes('noLabel'), true);
251251
});
252252
}));

0 commit comments

Comments
 (0)