Skip to content

Commit b9c6f33

Browse files
committed
fixed comment location
1 parent f48b643 commit b9c6f33

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

XMLTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,11 +329,11 @@ public void shouldHandleNullNodeValue()
329329
inputJSON.put("nullValue", JSONObject.NULL);
330330
// This is a possible preferred result
331331
String expectedXML = "<nullValue/>";
332-
String actualXML = "<nullValue>null</nullValue>";
333332
/**
334333
* This is the current behavior. JSONObject.NULL is emitted as
335334
* the string, "null".
336335
*/
336+
String actualXML = "<nullValue>null</nullValue>";
337337
String resultXML = XML.toString(inputJSON);
338338
assertEquals(actualXML, resultXML);
339339
}

0 commit comments

Comments
 (0)