From bee09aa626b3dfc8863ef684c71d47006dc7f486 Mon Sep 17 00:00:00 2001 From: Amith Koujalgi Date: Tue, 18 Mar 2025 22:03:04 +0530 Subject: [PATCH] Updated integration tests --- .../ollama4j/integrationtests/OllamaAPIIntegrationTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/io/github/ollama4j/integrationtests/OllamaAPIIntegrationTest.java b/src/test/java/io/github/ollama4j/integrationtests/OllamaAPIIntegrationTest.java index 12d60f4..9aa1579 100644 --- a/src/test/java/io/github/ollama4j/integrationtests/OllamaAPIIntegrationTest.java +++ b/src/test/java/io/github/ollama4j/integrationtests/OllamaAPIIntegrationTest.java @@ -53,7 +53,7 @@ public class OllamaAPIIntegrationTest { ollama.setPortBindings(portBindings); ollama.start(); api = new OllamaAPI("http://" + ollama.getHost() + ":" + ollama.getMappedPort(internalPort)); - api.setRequestTimeoutSeconds(60); + api.setRequestTimeoutSeconds(120); api.setVerbose(true); }