Skip to content

Commit 0b056d0

Browse files
committed
Fix a typo in processor tests
1 parent e5faf77 commit 0b056d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tests/java/ProcessorTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public void testProcessArray() {
9999
assertEquals(1, num.intValue());
100100

101101
// Test mixed array
102-
List<Object> mixed = JSONProcessor.processArray("[1,\"two\",true]");
102+
List<Object> mixed = JSONProcessor.processArray("[1.0,\"two\",true]");
103103
assertEquals(3, mixed.size());
104104
assertEquals(1.0, mixed.get(0));
105105
assertEquals("two", mixed.get(1));

0 commit comments

Comments
 (0)