Skip to content

Commit 8fa7315

Browse files
committed
fixed a bug in TestSetPredefinedTypes.java
1 parent 7143d5c commit 8fa7315

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/org/msgpack/TestSetPredefinedTypes.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ public void testLong() throws Exception {
7272
testLong(0);
7373
testLong(-1);
7474
testLong(1);
75-
testLong(Integer.MIN_VALUE);
76-
testLong(Integer.MAX_VALUE);
75+
testLong(Long.MIN_VALUE);
76+
testLong(Long.MAX_VALUE);
7777
testLong(Long.MIN_VALUE);
7878
testLong(Long.MAX_VALUE);
7979
Random rand = new Random();

0 commit comments

Comments
 (0)