chore(#871-strictMode): fix small spacing typo

This commit is contained in:
rikkarth 2024-03-22 18:42:49 +00:00
parent d335447ab4
commit 49de92224d
No known key found for this signature in database
GPG Key ID: 11E5F28B0AED6AC7

View File

@ -23,7 +23,7 @@ public class JSONParserConfigurationTest {
@Test
public void testOverwrite() {
JSONObject jsonObject = new JSONObject(TEST_SOURCE,
new JSONParserConfiguration().withOverwriteDuplicateKey(true));
new JSONParserConfiguration().withOverwriteDuplicateKey(true));
assertEquals("duplicate key should be overwritten", "value2", jsonObject.getString("key"));
}