aboutsummaryrefslogtreecommitdiffstats
path: root/vespa-feed-client/src/test/java
diff options
context:
space:
mode:
authorjonmv <venstad@gmail.com>2024-05-21 17:42:59 +0200
committerjonmv <venstad@gmail.com>2024-05-21 17:42:59 +0200
commitfa3a958185ae4d8f73ffd6514e017e6b6c91fb62 (patch)
treeab8f7bf3160d343eb9818d85f091f32ff4925869 /vespa-feed-client/src/test/java
parent7a755231be93d69dfa92a6cfa75ba32cc116698e (diff)
Fix test
Diffstat (limited to 'vespa-feed-client/src/test/java')
-rw-r--r--vespa-feed-client/src/test/java/ai/vespa/feed/client/impl/HttpRequestStrategyTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespa-feed-client/src/test/java/ai/vespa/feed/client/impl/HttpRequestStrategyTest.java b/vespa-feed-client/src/test/java/ai/vespa/feed/client/impl/HttpRequestStrategyTest.java
index f313f08426c..37a9b772ed4 100644
--- a/vespa-feed-client/src/test/java/ai/vespa/feed/client/impl/HttpRequestStrategyTest.java
+++ b/vespa-feed-client/src/test/java/ai/vespa/feed/client/impl/HttpRequestStrategyTest.java
@@ -235,7 +235,7 @@ class HttpRequestStrategyTest {
// Time advances, and the circuit breaker half-opens.
assertEquals(CLOSED, breaker.state());
- now.addAndGet(2000);
+ now.addAndGet(2_000_000);
assertEquals(HALF_OPEN, breaker.state());
// It's indeterminate which cluster gets the next request, but the second should get the next one after that.