From b9c6f335ee832e1db56a3db4a84657323b82fc2f Mon Sep 17 00:00:00 2001 From: stleary Date: Sun, 19 Jul 2015 09:04:10 -0500 Subject: [PATCH] fixed comment location --- XMLTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/XMLTest.java b/XMLTest.java index 8a56407..6dc3842 100644 --- a/XMLTest.java +++ b/XMLTest.java @@ -329,11 +329,11 @@ public class XMLTest { inputJSON.put("nullValue", JSONObject.NULL); // This is a possible preferred result String expectedXML = ""; - String actualXML = "null"; /** * This is the current behavior. JSONObject.NULL is emitted as * the string, "null". */ + String actualXML = "null"; String resultXML = XML.toString(inputJSON); assertEquals(actualXML, resultXML); }