Skip to content

Commit ea62bbf

Browse files
committed
f
1 parent f8aac86 commit ea62bbf

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

lib/internal/timers.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ function getTimerCallbacks(runNextTicks) {
538538
if (diff < msecs) {
539539
debug('%d list wait because diff is %d', msecs, diff);
540540
} else {
541-
debug('%d list wait because it\s no more earliest', msecs);
541+
debug('%d list wait because it\'s no more earliest', msecs);
542542
}
543543
return;
544544
}

test/parallel/test-timers-timeout-with-long-loop.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
'use strict';
22

3-
const assert = require('assert');
3+
require('../common');
44

5-
const common = require('../common');
5+
const assert = require('assert');
66

77
const orders = [];
8-
98
process.on('exit', () => {
109
assert.deepStrictEqual(orders, [ 1, 2, 3 ]);
1110
});

0 commit comments

Comments
 (0)