diff options
author | Abyss777 <abyss@fox5.ru> | 2017-09-04 18:01:43 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2017-09-04 18:01:43 +0500 |
commit | 87392d9fbb0289b5486496b6e6b97db1ea84e2b7 (patch) | |
tree | 6d8413ad76307ee7bc52b5788dc202bb55762958 /test/org/traccar/protocol/MeiligaoProtocolEncoderTest.java | |
parent | 99fd421c76c8e7491095a91630516f6d2db27034 (diff) | |
download | trackermap-server-87392d9fbb0289b5486496b6e6b97db1ea84e2b7.tar.gz trackermap-server-87392d9fbb0289b5486496b6e6b97db1ea84e2b7.tar.bz2 trackermap-server-87392d9fbb0289b5486496b6e6b97db1ea84e2b7.zip |
Accept timezone id instead of offset in commands
Diffstat (limited to 'test/org/traccar/protocol/MeiligaoProtocolEncoderTest.java')
-rw-r--r-- | test/org/traccar/protocol/MeiligaoProtocolEncoderTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/org/traccar/protocol/MeiligaoProtocolEncoderTest.java b/test/org/traccar/protocol/MeiligaoProtocolEncoderTest.java index f9d77f8a6..ee4a869f9 100644 --- a/test/org/traccar/protocol/MeiligaoProtocolEncoderTest.java +++ b/test/org/traccar/protocol/MeiligaoProtocolEncoderTest.java @@ -10,7 +10,7 @@ public class MeiligaoProtocolEncoderTest extends ProtocolTest { public void testEncode() throws Exception { MeiligaoProtocolEncoder encoder = new MeiligaoProtocolEncoder(); - + Command command = new Command(); command.setDeviceId(1); command.setType(Command.TYPE_POSITION_SINGLE); @@ -23,7 +23,7 @@ public class MeiligaoProtocolEncoderTest extends ProtocolTest { verifyCommand(encoder, command, binary("40400013123456789012344102000a2f4f0d0a")); command.setType(Command.TYPE_SET_TIMEZONE); - command.set(Command.KEY_TIMEZONE, 480 * 60); + command.set(Command.KEY_TIMEZONE, "GMT+8"); verifyCommand(encoder, command, binary("4040001412345678901234413234383030ad0d0a")); |