Skip to content
This repository has been archived by the owner on Apr 12, 2019. It is now read-only.

Commit

Permalink
Remove unnecessary assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaelkalt committed Jul 27, 2018
1 parent 6a261e4 commit 4e8c92e
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ public static void assertRowComments(String filename, String sheet, int rowIndex
try (final Workbook workbook = WorkbookFactory.create(new File(filename), null, true)) {
final Row row = workbook.getSheet(sheet).getRow(rowIndex);
List<String> commentsInRow = collectAllCommentsInRow(row);
assertThat(commentsInRow).hasSize(expectedCommentsValues.length);
assertThat(commentsInRow).containsExactlyInAnyOrder(expectedCommentsValues);
}
}
Expand Down

0 comments on commit 4e8c92e

Please sign in to comment.