From caa9e79846e47aa9208ad37974404fa07f859955 Mon Sep 17 00:00:00 2001 From: Steven Liu Date: Mon, 12 Jan 2026 17:17:44 +0100 Subject: [PATCH] fix(client/tests): fix client tests due to changes made to ServerUtils constructor; see FIXMEs --- client/src/test/java/client/ServerUtilsTest.java | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/test/java/client/ServerUtilsTest.java b/client/src/test/java/client/ServerUtilsTest.java index 3d73659..9583d8c 100644 --- a/client/src/test/java/client/ServerUtilsTest.java +++ b/client/src/test/java/client/ServerUtilsTest.java @@ -33,6 +33,7 @@ class ServerUtilsTest { @BeforeEach void setup() throws IOException, InterruptedException { + // FIXME: Prefer Guice-provided instance via a unit test Module. dv = new ServerUtils(HttpClient.newHttpClient()); Assumptions.assumeTrue(dv.isServerAvailable(), "Server not available");