Skip to content

Commit

Permalink
Surefire and Maven updates
Browse files Browse the repository at this point in the history
- Corrected Tests
  • Loading branch information
asturio committed Jan 8, 2024
1 parent d7435c6 commit 7a09a93
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

class FontSelectorTest {

public static final String STRING_TO_CHECK = "Χαίρετε Greek -";
public static final String STRING_TO_CHECK = "Some Χαίρετε Greek -";

@Test
void testDefaultFont() throws IOException {
Expand All @@ -29,6 +29,6 @@ void testDefaultFont() throws IOException {

PdfReader rd = new PdfReader(stream.toByteArray());
PdfTextExtractor pdfTextExtractor = new PdfTextExtractor(rd);
assertEquals(pdfTextExtractor.getTextFromPage(1), STRING_TO_CHECK);
assertEquals(STRING_TO_CHECK, pdfTextExtractor.getTextFromPage(1));
}
}

0 comments on commit 7a09a93

Please sign in to comment.