aboutsummaryrefslogtreecommitdiff
path: root/test/org/traccar/protocol/AustinNbProtocolDecoderTest.java
diff options
context:
space:
mode:
authornativbarak <nativ@globekeeper.com>2018-04-29 13:42:34 +0300
committernativbarak <nativ@globekeeper.com>2018-04-29 13:42:34 +0300
commit38a2feaf2208a124ddbb7a48a61cefbd4d7c583f (patch)
treedd9e39bbcaf578f1e54aae2b6d992a60e9b8df65 /test/org/traccar/protocol/AustinNbProtocolDecoderTest.java
parentd4fb7c70ffdba90e11914cb25a38955f0d50fd42 (diff)
downloadtraccar-server-38a2feaf2208a124ddbb7a48a61cefbd4d7c583f.tar.gz
traccar-server-38a2feaf2208a124ddbb7a48a61cefbd4d7c583f.tar.bz2
traccar-server-38a2feaf2208a124ddbb7a48a61cefbd4d7c583f.zip
Fixed automation test
Diffstat (limited to 'test/org/traccar/protocol/AustinNbProtocolDecoderTest.java')
-rw-r--r--test/org/traccar/protocol/AustinNbProtocolDecoderTest.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/org/traccar/protocol/AustinNbProtocolDecoderTest.java b/test/org/traccar/protocol/AustinNbProtocolDecoderTest.java
index 30291bd2f..9608e32a6 100644
--- a/test/org/traccar/protocol/AustinNbProtocolDecoderTest.java
+++ b/test/org/traccar/protocol/AustinNbProtocolDecoderTest.java
@@ -11,22 +11,22 @@ public class AustinNbProtocolDecoderTest extends ProtocolTest {
AustinNbProtocolDecoder decoder = new AustinNbProtocolDecoder(new AustinNbProtocol());
verifyPosition(decoder, text(
- "48666666666;2017-01-01 16:31:01;52,1133308410645;21,1000003814697;310;120;2292;1"));
+ "48666666666;2017-01-01 16:31:01;52,1133308410645;21,1000003814697;310;120;2292;1;ORANGE"));
verifyPosition(decoder, text(
- "48666666666;2017-01-01 16:55:00;52,1636123657227;21,0827789306641;0;90;4000;0"));
+ "48666666666;2017-01-01 16:55:00;52,1636123657227;21,0827789306641;0;90;4000;0;ORANGE"));
verifyPosition(decoder, text(
- "48666666666;2017-01-01 17:32:01;52,1711120605469;21,0866680145264;70;90;1199;0"));
+ "48666666666;2017-01-01 17:32:01;52,1711120605469;21,0866680145264;70;90;1199;0;ORANGE"));
verifyPosition(decoder, text(
- "48601601601;2017-01-01 16:31:01;52,1133308410645;21,1000003814697;310;360;2292;1"));
+ "48601601601;2017-01-01 16:31:01;52,1133308410645;21,1000003814697;310;360;2292;1;ORANGE"));
verifyPosition(decoder, text(
- "48601601601;2017-01-01 16:55:00;52,1636123657227;21,0827789306641;0;360;4000;0"));
+ "48601601601;2017-01-01 16:55:00;52,1636123657227;21,0827789306641;0;360;4000;0;ORANGE"));
verifyPosition(decoder, text(
- "48601601601;2017-01-01 17:32:01;52,1711120605469;21,0866680145264;70;360;1199;0"));
+ "48601601601;2017-01-01 17:32:01;52,1711120605469;21,0866680145264;70;360;1199;0;ORANGE"));
}