We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5faf77 commit 0b056d0Copy full SHA for 0b056d0
src/tests/java/ProcessorTests.java
@@ -99,7 +99,7 @@ public void testProcessArray() {
99
assertEquals(1, num.intValue());
100
101
// Test mixed array
102
- List<Object> mixed = JSONProcessor.processArray("[1,\"two\",true]");
+ List<Object> mixed = JSONProcessor.processArray("[1.0,\"two\",true]");
103
assertEquals(3, mixed.size());
104
assertEquals(1.0, mixed.get(0));
105
assertEquals("two", mixed.get(1));
0 commit comments