Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
squash: > to >=
  • Loading branch information
Trott committed Aug 18, 2017
commit ec83819c6ef1e218e27e9ffdfbee5cc3d7567651
2 changes: 1 addition & 1 deletion test/sequential/test-timers-blocking-callback.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function blockingCallback(retry, callback) {
// But they are guaranteed to be at least 100ms late given the bug in
// https://github.com/nodejs/node-v0.x-archive/issues/15447 and
// https://github.com/nodejs/node-v0.x-archive/issues/9333.
if (latestDelay > TIMEOUT * 2) {
if (latestDelay >= TIMEOUT * 2) {
if (retries > 0) {
retries--;
return retry(callback);
Expand Down