Skip to content

Commit

Permalink
Fix some code warnings
Browse files Browse the repository at this point in the history
Change-Id: Iff10d19bfef6180fda8e4dd1b10d3753e381e4d8
  • Loading branch information
sentinelt committed Jul 7, 2021
1 parent db746dc commit 885c660
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ public void wiktionaryList() throws IOException {
System.out.println(" No plural form specified: " + wrongNoPlural + " (" + wrongNoPluralPercent + "%)");
System.out.println(" Incorrect answer: " + justPlainWrong + " (" + justPlainWrongPercent + "%)");
assertTrue(correct > 68);
assertTrue(basicWrong == 1);
assertEquals(1, basicWrong);
}

@Test
Expand Down

0 comments on commit 885c660

Please sign in to comment.