Skip to content

Commit

Permalink
JavadocHoverTests.java aktualisieren
Browse files Browse the repository at this point in the history
  • Loading branch information
carstenartur authored and jjohnstn committed Oct 17, 2024
1 parent 460b131 commit 8959467
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ int check (String value, String[] strings) {

// value should be expanded:
int index= actualHtmlContent.indexOf("<pre>{");
org.junit.Assert.assertNotEquals(-1, index);
assertNotEquals(-1, index);
String actualSnippet= actualHtmlContent.substring(index, index + expectedCodeSequence.length());
assertEquals("sequence doesn't match", expectedCodeSequence, actualSnippet);
}
Expand Down Expand Up @@ -319,7 +319,7 @@ int check (String value, String[] strings) {

// value should be expanded:
int index= actualHtmlContent.indexOf("<pre><code>");
org.junit.Assert.assertNotEquals(-1, index);
assertNotEquals(-1, index);
String actualSnippet= actualHtmlContent.substring(index, index + expectedCodeSequence.length());
assertEquals("sequence doesn't match", actualSnippet, expectedCodeSequence);
}
Expand Down

0 comments on commit 8959467

Please sign in to comment.