Skip to content

Commit

Permalink
Fix write json basic test (#4527)
Browse files Browse the repository at this point in the history
Signed-off-by: Krishna Kondaka <[email protected]>
Co-authored-by: Krishna Kondaka <[email protected]>
  • Loading branch information
kkondaka and Krishna Kondaka authored May 10, 2024
1 parent b7aa8ef commit 310e8be
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public void testBasic(String target) throws Exception {
String expectedString1 = "{\"mapKey\":{\"stringKey\":\"testString\",\"intKey\":10},\"boolKey\":true}";
String expectedString2 = "{\"boolKey\":true,\"mapKey\":{\"stringKey\":\"testString\",\"intKey\":10}}";
String expectedString3 = "{\"boolKey\":true,\"mapKey\":{\"intKey\":10,\"stringKey\":\"testString\"}}";
String expectedString4 = "{\"boolKey\":true,\"mapKey\":{\"intKey\":10,\"stringKey\":\"testString\"}}";
String expectedString4 = "{\"mapKey\":{\"intKey\":10,\"stringKey\":\"testString\"},\"boolKey\":true}";


Map<String, Object> data = Map.of(sourceKey, value);
Expand Down

0 comments on commit 310e8be

Please sign in to comment.