chore(#887): JSONParserConfiguration strictMode true flag cleanup

This commit is contained in:
rikkarth
2024-05-19 14:41:16 +01:00
parent 48dfeb84b0
commit a8ab79e3f3
2 changed files with 1 additions and 6 deletions

View File

@@ -98,8 +98,7 @@ public class JSONTokenerTest {
checkValid(" [] ",JSONArray.class);
checkValid("[1,2]",JSONArray.class);
checkValid("\n\n[1,2]\n\n",JSONArray.class);
// TODO: strictMode regression, needs to be fixed
// checkValid("1 2", String.class);
checkValid("1 2", String.class);
}
@Test