Skip to content

Commit e1737ae

Browse files
committed
fix-to(array): 修复case
1 parent 7be0b5b commit e1737ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

json-diff-core/src/main/java/me/codeleep/jsondiff/core/handle/array/ComplexArrayJsonNeat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ protected JsonCompareResult ignoreOrder(JsonDiffArray expect, JsonDiffArray actu
3939
continue;
4040
}
4141
TravelPath nextTravelPath = new TravelPath(this.travelPath, expectIndex, actualIndex);
42-
JsonNeat<? extends JsonDiff> jsonNeat = RunTimeDataFactory.getOptionInstance().getJsonNeatFactory().generate( expect.get(expectIndex), actual.get(actualIndex), nextTravelPath);
42+
JsonNeat<? extends JsonDiff> jsonNeat = RunTimeDataFactory.getOptionInstance().getJsonNeatFactory().generate(expect.get(expectIndex), actual.get(actualIndex), nextTravelPath);
4343
if (jsonNeat == null) {
4444
continue;
4545
}

0 commit comments

Comments
 (0)