Skip to content

Commit 1499ae8

Browse files
committed
Merge pull request #413 from gphilipp/restore_diff_with_other_data_table
Restore ability to diff with another DataTable
2 parents 5e46857 + 05aaf75 commit 1499ae8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/cucumber/api/DataTable.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ public void diff(List<?> other) throws TableDiffException {
143143
* @param other the other table to diff with.
144144
* @throws TableDiffException if the tables are different.
145145
*/
146-
void diff(DataTable other) throws TableDiffException {
146+
public void diff(DataTable other) throws TableDiffException {
147147
new TableDiffer(this, other).calculateDiffs();
148148
}
149149

0 commit comments

Comments
 (0)