diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-06-09 23:22:52 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-06-09 23:22:52 +1200 |
commit | ee4c07115d3bc3e58b92310f54bee7bd616ec669 (patch) | |
tree | b5a96052b9d32eb19924047eac434058a5812ad3 /test/org | |
parent | 1a91db44d43fe0aac0dbd56818f0b779900fa70a (diff) | |
download | trackermap-server-ee4c07115d3bc3e58b92310f54bee7bd616ec669.tar.gz trackermap-server-ee4c07115d3bc3e58b92310f54bee7bd616ec669.tar.bz2 trackermap-server-ee4c07115d3bc3e58b92310f54bee7bd616ec669.zip |
Fix new STL060 regex pattern
Diffstat (limited to 'test/org')
-rw-r--r-- | test/org/traccar/protocol/Stl060ProtocolDecoderTest.java | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/test/org/traccar/protocol/Stl060ProtocolDecoderTest.java b/test/org/traccar/protocol/Stl060ProtocolDecoderTest.java index 7766e104e..4b3ec36fb 100644 --- a/test/org/traccar/protocol/Stl060ProtocolDecoderTest.java +++ b/test/org/traccar/protocol/Stl060ProtocolDecoderTest.java @@ -1,8 +1,7 @@ package org.traccar.protocol; -import org.traccar.helper.TestDataManager; -import static org.traccar.helper.DecoderVerifier.verify; import org.junit.Test; +import static org.traccar.helper.DecoderVerifier.verify; public class Stl060ProtocolDecoderTest extends ProtocolDecoderTest { @@ -20,8 +19,8 @@ public class Stl060ProtocolDecoderTest extends ProtocolDecoderTest { verify(decoder.decode(null, null, "$1,357804047969310,D001,AP29AW0963,01/01/13,13:24:47,1723.9582N,07834.0945E,00100,010,0,0,0,0,0,A,")); - //verify(decoder.decode(null, null, - // "$1,357804047969310,D001,AP29AW0963,01/01/13,13:24:47,1723.9582N,07834.0945E,00100,010,0,0,0,0,0,0008478660,1450,40,34,0,0,0,A")); + verify(decoder.decode(null, null, + "$1,357804047969310,D001,AP29AW0963,01/01/13,13:24:47,1723.9582N,07834.0945E,00100,010,0,0,0,0,0,0008478660,1450,40,34,0,0,0,A")); } |