Skip to content

Commit 2c17b3e

Browse files
committed
Replaced testShort with testByte in testByte function.
1 parent 6909073 commit 2c17b3e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/test/java/org/msgpack/TestSet.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ public void testBooleanArray(boolean[] v) throws Exception {
4242
}
4343

4444
public void testByte() throws Exception {
45-
testShort((byte) 0);
46-
testShort((byte) -1);
47-
testShort((byte) 1);
45+
testByte((byte) 0);
46+
testByte((byte) -1);
47+
testByte((byte) 1);
4848
testByte(Byte.MIN_VALUE);
4949
testByte(Byte.MAX_VALUE);
5050
byte[] bytes = new byte[1000];

0 commit comments

Comments
 (0)