Skip to content

Commit

Permalink
undo commented code
Browse files Browse the repository at this point in the history
  • Loading branch information
idegtiarenko committed Dec 9, 2024
1 parent a50a67f commit a59ddb0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ private static String describeFailures(List<DataFailure> dataFailures) {
}
expected.describeMismatch(actualList, description);
String prefix = "row " + f.row + " column " + f.column + ":";
return prefix + description.toString();//.replace("\n", "\n" + prefix);
return prefix + description.toString().replace("\n", "\n" + prefix);
}).collect(Collectors.joining(System.lineSeparator()));
}

Expand Down

0 comments on commit a59ddb0

Please sign in to comment.