java/com.sap.sailing.domain.test/src/com/sap/sailing/domain/test/TrackTest.java
... ...
@@ -357,7 +357,7 @@ public class TrackTest {
357 357
GPSFix fix4 = new GPSFixImpl(new DegreePosition(4./60., 0), new MillisecondsTimePoint(10800000)); // 1nm in one hour = 1kt
358 358
track.addGPSFix(fix4);
359 359
assertEquals(1., track.getMaximumSpeedOverGround(new MillisecondsTimePoint(0), new MillisecondsTimePoint(3600000)).
360
- getB().getKnots(), 0.001);
360
+ getB().getKnots(), 0.01);
361 361
}
362 362
363 363
@Test
... ...
@@ -372,7 +372,7 @@ public class TrackTest {
372 372
GPSFix fix4 = new GPSFixImpl(new DegreePosition(4./60., 0), new MillisecondsTimePoint(10800000)); // 1nm in one hour = 1kt
373 373
track.addGPSFix(fix4);
374 374
assertEquals(2., track.getMaximumSpeedOverGround(new MillisecondsTimePoint(0), new MillisecondsTimePoint(10800000)).
375
- getB().getKnots(), 0.001);
375
+ getB().getKnots(), 0.01);
376 376
}
377 377
378 378
@Test