Skip to content

Commit 8eb6706

Browse files
author
Jarkko Laitinen
committed
A bit more humane timelimit on checkstatus test
1 parent 423a438 commit 8eb6706

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

fi/cosky/sdk/tests/SdkTests.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -864,7 +864,7 @@ public void T29TestRequestingTasksAndVehiclesWhileOptimizing() {
864864
problem = api.navigate(RoutingProblemData.class, response.getLocation());
865865

866866
while (problem.getProgress() < 10 ) {
867-
Thread.sleep(100);
867+
Thread.sleep(1500);
868868
problem = api.navigate(RoutingProblemData.class, problem.getLink("self"));
869869
}
870870

@@ -879,6 +879,7 @@ public void T29TestRequestingTasksAndVehiclesWhileOptimizing() {
879879
assertNotNull(tas.getItems());
880880
}
881881

882+
882883
@Test
883884
public void T30TestGettingKPIsThroughtTheAPI() {
884885
API api = TestHelper.authenticate();

0 commit comments

Comments
 (0)