Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
XadillaX committed Feb 14, 2023
1 parent f8aac86 commit ea62bbf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/internal/timers.js
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ function getTimerCallbacks(runNextTicks) {
if (diff < msecs) {
debug('%d list wait because diff is %d', msecs, diff);
} else {
debug('%d list wait because it\s no more earliest', msecs);
debug('%d list wait because it\'s no more earliest', msecs);
}
return;
}
Expand Down
5 changes: 2 additions & 3 deletions test/parallel/test-timers-timeout-with-long-loop.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
'use strict';

const assert = require('assert');
require('../common');

const common = require('../common');
const assert = require('assert');

const orders = [];

process.on('exit', () => {
assert.deepStrictEqual(orders, [ 1, 2, 3 ]);
});
Expand Down

0 comments on commit ea62bbf

Please sign in to comment.