diff --git a/commafeed-server/pom.xml b/commafeed-server/pom.xml
index f4cb7632..2897cbbd 100644
--- a/commafeed-server/pom.xml
+++ b/commafeed-server/pom.xml
@@ -13,7 +13,7 @@
quarkus
- 3.37.4
+ 3.38.0
7.5
2.1.0
diff --git a/commafeed-server/src/test/java/com/commafeed/backend/HttpGetterTest.java b/commafeed-server/src/test/java/com/commafeed/backend/HttpGetterTest.java
index 8da32a58..7660ccf5 100644
--- a/commafeed-server/src/test/java/com/commafeed/backend/HttpGetterTest.java
+++ b/commafeed-server/src/test/java/com/commafeed/backend/HttpGetterTest.java
@@ -12,7 +12,6 @@ import io.quarkus.runtime.configuration.MemorySize;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.OutputStream;
-import java.math.BigInteger;
import java.net.NoRouteToHostException;
import java.net.SocketTimeoutException;
import java.net.UnknownHostException;
@@ -71,11 +70,10 @@ class HttpGetterTest {
Mockito.when(config.httpClient().socketTimeout()).thenReturn(Duration.ofSeconds(30));
Mockito.when(config.httpClient().responseTimeout()).thenReturn(Duration.ofSeconds(30));
Mockito.when(config.httpClient().connectionTimeToLive()).thenReturn(Duration.ofSeconds(30));
- Mockito.when(config.httpClient().maxResponseSize())
- .thenReturn(new MemorySize(new BigInteger("10000")));
+ Mockito.when(config.httpClient().maxResponseSize()).thenReturn(MemorySize.of("10000"));
Mockito.when(config.httpClient().cache().enabled()).thenReturn(true);
Mockito.when(config.httpClient().cache().maximumMemorySize())
- .thenReturn(new MemorySize(new BigInteger("100000")));
+ .thenReturn(MemorySize.of("100000"));
Mockito.when(config.httpClient().cache().expiration()).thenReturn(Duration.ofMinutes(1));
Mockito.when(config.feedRefresh().httpThreads()).thenReturn(3);