Skip to content

Commit

Permalink
Finetuning test
Browse files Browse the repository at this point in the history
  • Loading branch information
nck-mlcnv committed Jul 5, 2024
1 parent ac82a6d commit 2650bfc
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public class SPARQLProtocolWorkerTest {
.containerThreads(8)
.asynchronousResponseEnabled(false)
.asynchronousResponseThreads(8)
.timeout(50000))
.timeout(5000))
.failOnUnmatchedRequests(true)
.build();

Expand All @@ -69,7 +69,7 @@ public class SPARQLProtocolWorkerTest {
public static void setup() throws IOException {
queryFile = Files.createTempFile("iguana-test-queries", ".tmp");
Files.writeString(queryFile, QUERY, StandardCharsets.UTF_8);
wm.setGlobalFixedDelay(1);
wm.setGlobalFixedDelay(2);
}

@BeforeEach
Expand Down Expand Up @@ -113,7 +113,7 @@ public static Stream<Arguments> requestFactoryData() throws URISyntaxException {
queryHandlderSupplier.apply(cached),
new HttpWorker.QueryMixes(QUERY_MIXES),
connection,
Duration.parse("PT100S"),
Duration.parse("PT6S"),
"application/sparql-results+json",
requestType,
true
Expand Down

0 comments on commit 2650bfc

Please sign in to comment.