aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAlexander Menk <menk@mestrona.net>2016-12-21 09:45:02 +0100
committerAlexander Menk <menk@mestrona.net>2016-12-21 09:45:02 +0100
commitc70c026d31ae673e06abb58333f4808db875f6a6 (patch)
treea7b30edd01877f105098845f709dd4e854c098e4 /test
parente0f8ae0ef6a2dbaa973e23650e347cbcf77b387a (diff)
downloadtrackermap-server-c70c026d31ae673e06abb58333f4808db875f6a6.tar.gz
trackermap-server-c70c026d31ae673e06abb58333f4808db875f6a6.tar.bz2
trackermap-server-c70c026d31ae673e06abb58333f4808db875f6a6.zip
#2702 SetTimezone: Really - Conversion to Seconds NOT Minutes
Diffstat (limited to 'test')
-rw-r--r--test/org/traccar/protocol/WatchProtocolEncoderTest.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/org/traccar/protocol/WatchProtocolEncoderTest.java b/test/org/traccar/protocol/WatchProtocolEncoderTest.java
index eaf290216..a7c360d7f 100644
--- a/test/org/traccar/protocol/WatchProtocolEncoderTest.java
+++ b/test/org/traccar/protocol/WatchProtocolEncoderTest.java
@@ -35,16 +35,16 @@ public class WatchProtocolEncoderTest extends ProtocolTest {
command = new Command();
command.setDeviceId(1);
command.setType(Command.TYPE_SET_TIMEZONE);
- command.set(Command.KEY_TIMEZONE, 60);
+ command.set(Command.KEY_TIMEZONE, 60 * 60);
Assert.assertEquals("[CS*123456789012345*0006*LZ,,+1]", encoder.encodeCommand(command));
- command.set(Command.KEY_TIMEZONE, 90);
+ command.set(Command.KEY_TIMEZONE, 90 * 60);
Assert.assertEquals("[CS*123456789012345*0008*LZ,,+1.5]", encoder.encodeCommand(command));
- command.set(Command.KEY_TIMEZONE, -60);
+ command.set(Command.KEY_TIMEZONE, -60 * 60);
Assert.assertEquals("[CS*123456789012345*0006*LZ,,-1]", encoder.encodeCommand(command));
- command.set(Command.KEY_TIMEZONE, -11 * 60 - 30);
+ command.set(Command.KEY_TIMEZONE, -11 * 60 * 60 - 30 * 60);
Assert.assertEquals("[CS*123456789012345*0009*LZ,,-11.5]", encoder.encodeCommand(command));
}