aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2019-01-29 20:45:42 -0800
committerGitHub <noreply@github.com>2019-01-29 20:45:42 -0800
commitccbb2893352ef62c95be6f1968214e4a6fa1a08d (patch)
treedf31297ebf5bcd11ae35c7ee86925872445afd50 /test
parent91dc8dab007f5eb2b3f2036b3aab9a5f70271c0f (diff)
parent61eb28513bdef0aae9e776f9f872b6c26661556a (diff)
downloadtraccar-server-ccbb2893352ef62c95be6f1968214e4a6fa1a08d.tar.gz
traccar-server-ccbb2893352ef62c95be6f1968214e4a6fa1a08d.tar.bz2
traccar-server-ccbb2893352ef62c95be6f1968214e4a6fa1a08d.zip
Merge pull request #4206 from flocsy/message-encoding
fixed message encoding
Diffstat (limited to 'test')
-rw-r--r--test/org/traccar/protocol/WatchProtocolEncoderTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/org/traccar/protocol/WatchProtocolEncoderTest.java b/test/org/traccar/protocol/WatchProtocolEncoderTest.java
index e088a2b04..f55086082 100644
--- a/test/org/traccar/protocol/WatchProtocolEncoderTest.java
+++ b/test/org/traccar/protocol/WatchProtocolEncoderTest.java
@@ -43,7 +43,7 @@ public class WatchProtocolEncoderTest extends ProtocolTest {
command.setDeviceId(1);
command.setType(Command.TYPE_MESSAGE);
command.set(Command.KEY_MESSAGE, "text");
- assertEquals("[CS*123456789012345*0010*MESSAGE,74657874]", encoder.encodeCommand(null, command));
+ assertEquals("[CS*123456789012345*0018*MESSAGE,0074006500780074]", encoder.encodeCommand(null, command));
command = new Command();
command.setDeviceId(1);