Switch last to calcPacketLength

This commit is contained in:
nicksavers 2014-06-26 19:56:30 +02:00
parent c740a42957
commit 8231d59086
1 changed files with 1 additions and 1 deletions

View File

@ -504,7 +504,7 @@ public class MessagesTest {
assertEquals(expected, Hex.toHexString(getChainMessage.getPayload()).toUpperCase());
byte[] size = ByteUtil.calcPacketSize( getChainMessage.getPayload());
byte[] size = ByteUtil.calcPacketLength( getChainMessage.getPayload());
assertEquals("00000067", Hex.toHexString(size));
}