summaryrefslogtreecommitdiff
path: root/core/src/test/java/org/elasticsearch/common
diff options
context:
space:
mode:
authorLee Hinman <lee@writequit.org>2017-05-23 10:37:17 -0600
committerLee Hinman <lee@writequit.org>2017-05-23 10:37:40 -0600
commit82a369737b59b9230813841ceb7d611c22e21755 (patch)
treeae9a1dfdff23a9a10cab827781aeaa490b968dc2 /core/src/test/java/org/elasticsearch/common
parentc71ae3519fddf4b9cd1516d46fb5f5aa9b5a7c29 (diff)
[TEST] Add additional assert logging
Diffstat (limited to 'core/src/test/java/org/elasticsearch/common')
-rw-r--r--core/src/test/java/org/elasticsearch/common/util/concurrent/QueueResizingEsThreadPoolExecutorTests.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/test/java/org/elasticsearch/common/util/concurrent/QueueResizingEsThreadPoolExecutorTests.java b/core/src/test/java/org/elasticsearch/common/util/concurrent/QueueResizingEsThreadPoolExecutorTests.java
index 732ec94ae1..82b67806b7 100644
--- a/core/src/test/java/org/elasticsearch/common/util/concurrent/QueueResizingEsThreadPoolExecutorTests.java
+++ b/core/src/test/java/org/elasticsearch/common/util/concurrent/QueueResizingEsThreadPoolExecutorTests.java
@@ -192,7 +192,7 @@ public class QueueResizingEsThreadPoolExecutorTests extends ESTestCase {
private Function<Runnable, Runnable> fastWrapper() {
return (runnable) -> {
- return new SettableTimedRunnable(TimeUnit.NANOSECONDS.toNanos(50));
+ return new SettableTimedRunnable(TimeUnit.NANOSECONDS.toNanos(100));
};
}