c07f4d34321795aecb6e5c7935593d8e685d60cf
java/com.sap.sailing.domain/src/com/sap/sailing/domain/tracking/impl/TrackedRaceImpl.java
| ... | ... | @@ -2870,7 +2870,7 @@ public abstract class TrackedRaceImpl extends TrackedRaceWithWindEssentials impl |
| 2870 | 2870 | maneuverCache.ensureFilled(); |
| 2871 | 2871 | } |
| 2872 | 2872 | |
| 2873 | - protected void triggerManeuverCacheRecalculationForAllCompetitors() { |
|
| 2873 | + public void triggerManeuverCacheRecalculationForAllCompetitors() { |
|
| 2874 | 2874 | if (cachesSuspended) { |
| 2875 | 2875 | triggerManeuverCacheInvalidationForAllCompetitors = true; |
| 2876 | 2876 | } else { |
java/com.sap.sailing.selenium.test/local-test-environment.xml
| ... | ... | @@ -28,7 +28,7 @@ |
| 28 | 28 | - http://code.google.com/p/selenium/wiki/SafariDriver |
| 29 | 29 | - http://code.google.com/p/selenium/wiki/RemoteWebDriverServer |
| 30 | 30 | |
| 31 | - NOTE: For the Chrome, Firefox and InternetExplorer driver an additional "server", which acts as a bridge between the |
|
| 31 | + Note: For the Chrome, Firefox and InternetExplorer driver an additional "server", which acts as a bridge between the |
|
| 32 | 32 | browser and the driver, is needed. |
| 33 | 33 | --> |
| 34 | 34 | <system-properties> |
java/com.sap.sailing.windestimation.test/src/com/sap/sailing/windestimation/integration/IncrementalMstHmmWindEstimationForTrackedRaceTest.java
| ... | ... | @@ -141,8 +141,8 @@ public class IncrementalMstHmmWindEstimationForTrackedRaceTest extends OnlineTra |
| 141 | 141 | /* sleepBetweenAttempts */ Duration.ONE_SECOND.times(5), Level.INFO, "Waiting for polar data service to finish computing"); |
| 142 | 142 | OnlineTracTracBasedTest.fixApproximateMarkPositionsForWindReadOut(getTrackedRace(), timePointForFixes); |
| 143 | 143 | final IncrementalWindEstimation windEstimation = windEstimationFactoryService.createIncrementalWindEstimationTrack(getTrackedRace()); |
| 144 | - getTrackedRace() |
|
| 145 | - .setWindEstimation(windEstimation); |
|
| 144 | + getTrackedRace().setWindEstimation(windEstimation); |
|
| 145 | + getTrackedRace().triggerManeuverCacheRecalculationForAllCompetitors(); |
|
| 146 | 146 | getTrackedRace().waitForManeuverDetectionToFinish(); |
| 147 | 147 | windEstimation.waitUntilDone(); |
| 148 | 148 | } |