diff options
Diffstat (limited to 'test/org/traccar/protocol/GpsmtaProtocolDecoderTest.java')
-rw-r--r-- | test/org/traccar/protocol/GpsmtaProtocolDecoderTest.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/org/traccar/protocol/GpsmtaProtocolDecoderTest.java b/test/org/traccar/protocol/GpsmtaProtocolDecoderTest.java index f6c51bf6e..fb5e83900 100644 --- a/test/org/traccar/protocol/GpsmtaProtocolDecoderTest.java +++ b/test/org/traccar/protocol/GpsmtaProtocolDecoderTest.java @@ -1,8 +1,7 @@ package org.traccar.protocol; import org.junit.Test; - -import static org.traccar.helper.DecoderVerifier.verify; +import org.traccar.ProtocolDecoderTest; public class GpsmtaProtocolDecoderTest extends ProtocolDecoderTest { @@ -11,7 +10,7 @@ public class GpsmtaProtocolDecoderTest extends ProtocolDecoderTest { GpsmtaProtocolDecoder decoder = new GpsmtaProtocolDecoder(new GpsmtaProtocol()); - verify(decoder.decode(null, null, + verifyPosition(decoder, text( "359144048138856 1442932957 49.85064 24.003979 1 0 40 0 10 110 26 0 0")); } |