Merge pull request #1941 from SiboVG/unstable

Increase error margin
This commit is contained in:
Sibo Van Gool 2023-01-01 14:24:15 +01:00 committed by GitHub
commit 2e6622ec83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,6 +24,8 @@ import static org.junit.Assert.assertSame;
* Tests to verify that simulations contain all the expected flight events. * Tests to verify that simulations contain all the expected flight events.
*/ */
public class FlightEventsTest extends BaseTestCase { public class FlightEventsTest extends BaseTestCase {
private static final double EPSILON = 0.005;
/** /**
* Tests for a single stage design. * Tests for a single stage design.
*/ */
@ -66,7 +68,7 @@ public class FlightEventsTest extends BaseTestCase {
// Test that the event times are correct // Test that the event times are correct
for (int i = 0; i < expectedEventTimes.length; i++) { for (int i = 0; i < expectedEventTimes.length; i++) {
assertEquals(" Flight type " + expectedEventTypes[i] + " has wrong time", assertEquals(" Flight type " + expectedEventTypes[i] + " has wrong time",
expectedEventTimes[i], eventList.get(i).getTime(), 0.002); expectedEventTimes[i], eventList.get(i).getTime(), EPSILON);
} }
@ -142,7 +144,7 @@ public class FlightEventsTest extends BaseTestCase {
// Test that the event times are correct // Test that the event times are correct
for (int i = 0; i < expectedEventTimes.length; i++) { for (int i = 0; i < expectedEventTimes.length; i++) {
assertEquals(" Flight type " + expectedEventTypes[i] + " has wrong time", assertEquals(" Flight type " + expectedEventTypes[i] + " has wrong time",
expectedEventTimes[i], eventList.get(i).getTime(), 0.002); expectedEventTimes[i], eventList.get(i).getTime(), EPSILON);
} }
// Test that the event sources are correct // Test that the event sources are correct