diff options
Diffstat (limited to 'test/org/traccar/protocol/ProgressProtocolDecoderTest.java')
-rw-r--r-- | test/org/traccar/protocol/ProgressProtocolDecoderTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/org/traccar/protocol/ProgressProtocolDecoderTest.java b/test/org/traccar/protocol/ProgressProtocolDecoderTest.java index dd4203609..e12f96279 100644 --- a/test/org/traccar/protocol/ProgressProtocolDecoderTest.java +++ b/test/org/traccar/protocol/ProgressProtocolDecoderTest.java @@ -10,12 +10,12 @@ import java.nio.ByteOrder; import static org.junit.Assert.assertNull; import static org.traccar.helper.DecoderVerifier.verify; -public class ProgressProtocolDecoderTest { +public class ProgressProtocolDecoderTest extends ProtocolDecoderTest { @Test public void testDecode() throws Exception { - ProgressProtocolDecoder decoder = new ProgressProtocolDecoder(new TestDataManager(), null, null); + ProgressProtocolDecoder decoder = new ProgressProtocolDecoder(null); assertNull(decoder.decode(null, null, ChannelBuffers.wrappedBuffer(ByteOrder.LITTLE_ENDIAN, ChannelBufferTools.convertHexString( "020037000100000003003131310f003335343836383035313339303036320f00323530303136333832383531353535010000000100000000000000e6bb97b6")))); |