Skip to content

Commit

Permalink
[NOID] fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
vga91 committed Apr 17, 2024
1 parent 64eadad commit 4736a8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions full/src/test/java/apoc/load/LoadCsvTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -832,8 +832,8 @@ public static void assertMapEquals(Map<String, Object> expected, Map<String, Obj
assertEquals(expected.keySet(), actual.keySet());

actual.forEach((key, value) -> {
if (value instanceof Map mapVal) {
assertMapEquals((Map<String, Object>) expected.get(key), mapVal);
if (value instanceof Map) {
assertMapEquals((Map<String, Object>) expected.get(key), (Map) value);
} else {
assertEquals(expected.get(key), value);
}
Expand Down

0 comments on commit 4736a8f

Please sign in to comment.