Skip to content

Commit 2cdf3b4

Browse files
THausherrjazzido
authored andcommitted
Adjust test
Test needs to be adjusted because PDFBox supports the /ActualText feature of PDFBox.
1 parent 88154e2 commit 2cdf3b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/technology/tabula/TestBasicExtractor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ public void testCheckSqueezeDoesntBreak() throws IOException {
203203
List<List<RectangularTextContainer>> rows = table.getRows();
204204
List<RectangularTextContainer> firstRow = rows.get(0);
205205
List<RectangularTextContainer> lastRow = rows.get(rows.size() - 1);
206-
assertTrue(firstRow.get(0).getText().equals("Violent crime . . . . . . . . . . . . . . . . . ."));
206+
assertTrue(firstRow.get(0).getText().equals("Violent crime. . . . . . . . . . . . . . . . . ."));
207207
assertTrue(lastRow.get(lastRow.size() - 1).getText().equals("(X)"));
208208
page.getPDDoc().close();
209209
}

0 commit comments

Comments
 (0)