We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10caf65 commit 7a01473Copy full SHA for 7a01473
src/test/java/com/github/underscore/LodashTest.java
@@ -881,6 +881,14 @@ void forceAddRoot() {
881
+ " ]\n"
882
+ "}",
883
U.Mode.FORCE_ADD_ROOT_JSON_TO_XML));
884
+ Map<String, Object> map2 = U.newLinkedHashMap();
885
+ List<Object> list = U.newArrayList();
886
+ list.add(U.newArrayList());
887
+ list.add(U.newLinkedHashMap());
888
+ map2.put("list", list);
889
+ U.replaceNumberAndBooleanWithString(map2);
890
+ map2.put("list", U.newLinkedHashMap());
891
892
}
893
894
@Test
0 commit comments