diff --git a/core/src/main/java/cucumber/api/DataTable.java b/core/src/main/java/cucumber/api/DataTable.java index 978dd3b56c..e0c0f7e9e7 100644 --- a/core/src/main/java/cucumber/api/DataTable.java +++ b/core/src/main/java/cucumber/api/DataTable.java @@ -143,7 +143,7 @@ public void diff(List other) throws TableDiffException { * @param other the other table to diff with. * @throws TableDiffException if the tables are different. */ - void diff(DataTable other) throws TableDiffException { + public void diff(DataTable other) throws TableDiffException { new TableDiffer(this, other).calculateDiffs(); }