We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 947d94f commit 0e4af94Copy full SHA for 0e4af94
src/test/java/com/github/underscore/FunctionsTest.java
@@ -116,7 +116,7 @@ public void throttle() {
116
final Integer[] counter = new Integer[] {0};
117
Supplier<Void> incr = new Supplier<Void>() { public Void get() {
118
counter[0]++; return null; } };
119
- final Supplier<Void> throttleIncr = U.throttle(incr, 30);
+ final Supplier<Void> throttleIncr = U.throttle(incr, 40);
120
throttleIncr.get();
121
122
U.delay(throttleIncr, 16);
0 commit comments