diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2021-04-11 11:27:08 -0700 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2021-04-11 11:27:08 -0700 |
commit | 2099230503370be87b893287e264aa200d0d930f (patch) | |
tree | 618b9aff989e713dc734b871a5c082f3c734f779 /src/test/java/org/traccar/protocol/NavisProtocolDecoderTest.java | |
parent | 4904b15558f05b3458fc5f80253707e51f0ff2c0 (diff) | |
download | trackermap-server-2099230503370be87b893287e264aa200d0d930f.tar.gz trackermap-server-2099230503370be87b893287e264aa200d0d930f.tar.bz2 trackermap-server-2099230503370be87b893287e264aa200d0d930f.zip |
Use var in tests
Diffstat (limited to 'src/test/java/org/traccar/protocol/NavisProtocolDecoderTest.java')
-rw-r--r-- | src/test/java/org/traccar/protocol/NavisProtocolDecoderTest.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/java/org/traccar/protocol/NavisProtocolDecoderTest.java b/src/test/java/org/traccar/protocol/NavisProtocolDecoderTest.java index 33a6bab24..b1282cac7 100644 --- a/src/test/java/org/traccar/protocol/NavisProtocolDecoderTest.java +++ b/src/test/java/org/traccar/protocol/NavisProtocolDecoderTest.java @@ -9,7 +9,7 @@ public class NavisProtocolDecoderTest extends ProtocolTest { @Test public void testDecodeNtcb() throws Exception { - NavisProtocolDecoder decoder = new NavisProtocolDecoder(null); + var decoder = new NavisProtocolDecoder(null); verifyNull(decoder, binary( "404E5443010000007B000000130044342A3E533A383631373835303035323035303739")); @@ -41,7 +41,7 @@ public class NavisProtocolDecoderTest extends ProtocolTest { @Test public void testDecodeFlex10() throws Exception { - NavisProtocolDecoder decoder = new NavisProtocolDecoder(null); + var decoder = new NavisProtocolDecoder(null); verifyNull(decoder, binary( "404e544301000000c9b5f602130046c52a3e533a383639363936303439373232383235")); @@ -60,7 +60,7 @@ public class NavisProtocolDecoderTest extends ProtocolTest { @Test public void testDecodeFlex20() throws Exception { - NavisProtocolDecoder decoder = new NavisProtocolDecoder(null); + var decoder = new NavisProtocolDecoder(null); verifyNull(decoder, binary( "404e544301000000a9eef602130043fb2a3e533a383639363936303439373337333835")); |