Skip to content

Commit

Permalink
Relaxed time constraints for the Travis buildserver
Browse files Browse the repository at this point in the history
  • Loading branch information
Rolf committed Feb 15, 2020
1 parent e2d05d9 commit 8849702
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ public void testMaskedDigitsPerformance() {
}

// On a 2013 MacBook this takes less than 200 ms.
boolean fastEnough = stopwatchNano.stop(500);
// On the Travis build server this takes roughly 750 ms.
boolean fastEnough = stopwatchNano.stop(1000);
assertTrue(stopwatchNano.getMessage(), fastEnough);
}

Expand Down

0 comments on commit 8849702

Please sign in to comment.