diff options
Diffstat (limited to 'test/org/traccar/events')
-rw-r--r-- | test/org/traccar/events/MotionEventHandlerTest.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/org/traccar/events/MotionEventHandlerTest.java b/test/org/traccar/events/MotionEventHandlerTest.java index 826f4c4e5..902be8b87 100644 --- a/test/org/traccar/events/MotionEventHandlerTest.java +++ b/test/org/traccar/events/MotionEventHandlerTest.java @@ -30,7 +30,7 @@ public class MotionEventHandlerTest extends BaseTest { @Test public void testMotionWithPosition() throws Exception { MotionEventHandler motionEventHandler = new MotionEventHandler( - new TripsConfig(500, 300 * 1000, 300 * 1000, false, 0, false)); + new TripsConfig(500, 300 * 1000, 300 * 1000, 0, false)); Position position = new Position(); position.setTime(date("2017-01-01 00:00:00")); @@ -69,7 +69,7 @@ public class MotionEventHandlerTest extends BaseTest { @Test public void testMotionWithStatus() throws Exception { MotionEventHandler motionEventHandler = new MotionEventHandler( - new TripsConfig(500, 300 * 1000, 300 * 1000, false, 0, false)); + new TripsConfig(500, 300 * 1000, 300 * 1000, 0, false)); Position position = new Position(); position.setTime(new Date(System.currentTimeMillis() - 360000)); @@ -89,7 +89,7 @@ public class MotionEventHandlerTest extends BaseTest { @Test public void testStopWithPositionIgnition() throws Exception { MotionEventHandler motionEventHandler = new MotionEventHandler( - new TripsConfig(500, 300 * 1000, 300 * 1000, false, 0, true)); + new TripsConfig(500, 300 * 1000, 300 * 1000, 0, true)); Position position = new Position(); position.setTime(date("2017-01-01 00:00:00")); |