bb01fd90b6e7c21aedc83736270f3b76111d77fa
java/com.sap.sailing.domain.racelogtrackingadapter.test/src/com/sap/sailing/domain/racelogtracking/test/impl/GPSFixStoreListenerTest.java
| ... | ... | @@ -39,7 +39,7 @@ public class GPSFixStoreListenerTest extends AbstractGPSFixStoreTest { |
| 39 | 39 | Thread thread = new Thread() { |
| 40 | 40 | public void run() { |
| 41 | 41 | try { |
| 42 | - barrier.await(100, TimeUnit.MILLISECONDS); |
|
| 42 | + barrier.await(1000, TimeUnit.MILLISECONDS); |
|
| 43 | 43 | // During iteration in the main thread this causes a modification that makes the iterator throw a |
| 44 | 44 | // ConcurrentModificationException on next() |
| 45 | 45 | store.addListener((DeviceIdentifier device, Iterable<GPSFixMoving> fixes, boolean returnManeuverChanges, boolean returnLiveDelay) -> { |
| ... | ... | @@ -73,7 +73,7 @@ public class GPSFixStoreListenerTest extends AbstractGPSFixStoreTest { |
| 73 | 73 | @Override |
| 74 | 74 | public Iterable<Triple<RegattaAndRaceIdentifier, Boolean, Duration>> fixesReceived(DeviceIdentifier device, Iterable<GPSFixMoving> fixes, boolean returnManeuverChanges, boolean returnLiveDelay) { |
| 75 | 75 | try { |
| 76 | - barrier.await(100, TimeUnit.MILLISECONDS); |
|
| 76 | + barrier.await(1000, TimeUnit.MILLISECONDS); |
|
| 77 | 77 | } catch (TimeoutException e) { |
| 78 | 78 | throw new TimoutRuntimeException(e); |
| 79 | 79 | } catch (Exception e) { |