From 49de92224d0a463947bd68316cd75c13d02a8ee7 Mon Sep 17 00:00:00 2001 From: rikkarth Date: Fri, 22 Mar 2024 18:42:49 +0000 Subject: [PATCH] chore(#871-strictMode): fix small spacing typo --- src/test/java/org/json/junit/JSONParserConfigurationTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/json/junit/JSONParserConfigurationTest.java b/src/test/java/org/json/junit/JSONParserConfigurationTest.java index 0666cb7..60cf2ce 100644 --- a/src/test/java/org/json/junit/JSONParserConfigurationTest.java +++ b/src/test/java/org/json/junit/JSONParserConfigurationTest.java @@ -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")); }