diff options
author | Abyss777 <abyss@fox5.ru> | 2017-08-15 15:15:49 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2017-08-15 15:15:49 +0500 |
commit | 60dea5494b10f52433166a8785edc12860679bc3 (patch) | |
tree | 949f8e181791599a6777cc0ec38551835f900638 /test/org/traccar/events | |
parent | f1ee1017d62ec0d1b6b1ca56c297537870f1d32b (diff) | |
download | trackermap-server-60dea5494b10f52433166a8785edc12860679bc3.tar.gz trackermap-server-60dea5494b10f52433166a8785edc12860679bc3.tar.bz2 trackermap-server-60dea5494b10f52433166a8785edc12860679bc3.zip |
Remove greadyParking
Diffstat (limited to 'test/org/traccar/events')
-rw-r--r-- | test/org/traccar/events/MotionEventHandlerTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/org/traccar/events/MotionEventHandlerTest.java b/test/org/traccar/events/MotionEventHandlerTest.java index 6b7b9daee..0543d86fe 100644 --- a/test/org/traccar/events/MotionEventHandlerTest.java +++ b/test/org/traccar/events/MotionEventHandlerTest.java @@ -29,7 +29,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)); + new TripsConfig(500, 300 * 1000, 300 * 1000, 0)); Position position = new Position(); position.setTime(date("2017-01-01 00:00:00")); @@ -68,7 +68,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)); + new TripsConfig(500, 300 * 1000, 300 * 1000, 0)); Position position = new Position(); position.setTime(new Date(System.currentTimeMillis() - 360000)); |