diff options
author | Florian <florian@voit.li> | 2017-06-14 20:59:05 +0200 |
---|---|---|
committer | Florian <florian@voit.li> | 2017-06-15 10:04:56 +0200 |
commit | 36788f4eb8ef055c8409d744515de3ef4ef037c2 (patch) | |
tree | e16437d3e68e66c1689d9a6ed257e45a6f86671e /test/org | |
parent | e10e10fee9c96cbcd4e79d8616632654df2eed97 (diff) | |
download | trackermap-server-36788f4eb8ef055c8409d744515de3ef4ef037c2.tar.gz trackermap-server-36788f4eb8ef055c8409d744515de3ef4ef037c2.tar.bz2 trackermap-server-36788f4eb8ef055c8409d744515de3ef4ef037c2.zip |
Filter Invalid upgrade and Wondex fix
Filter invalid filters now impossible positions. And in Wondex protocol answers to messages are no longer marked as invalid and Sat over 2 check removed.
Wondex decoder test changed because of the removed Sat over 2 check
Diffstat (limited to 'test/org')
-rw-r--r-- | test/org/traccar/protocol/WondexProtocolDecoderTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/org/traccar/protocol/WondexProtocolDecoderTest.java b/test/org/traccar/protocol/WondexProtocolDecoderTest.java index c68b41671..c7ccfb457 100644 --- a/test/org/traccar/protocol/WondexProtocolDecoderTest.java +++ b/test/org/traccar/protocol/WondexProtocolDecoderTest.java @@ -16,7 +16,7 @@ public class WondexProtocolDecoderTest extends ProtocolTest { verifyPosition(decoder, buffer( "2000000257,20151030145351,69.379976,53.283905,0,0,16,2,0,0,469.1,58.9,0.0"), - position("2015-10-30 14:53:51.000", false, 53.28390, 69.37998)); + position("2015-10-30 14:53:51.000", true, 53.28390, 69.37998)); verifyPosition(decoder, buffer( "2000000232,20151030145206,51.166900,43.651353,0,132,11,2,0,0,0.0,0.0,0.0")); |