Skip to content

Commit

Permalink
Merge pull request #307 from oliva123456/master
Browse files Browse the repository at this point in the history
  • Loading branch information
gernotstarke committed Sep 28, 2023
2 parents 01aa2e7 + 614b4c9 commit cc299e0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ dependencies {


// jsoup is our awesome html parser, see jsoup.org
implementation group: 'org.jsoup', name: 'jsoup', version: '1.11.3'
implementation group: 'org.jsoup', name: 'jsoup', version: '1.16.1'


} // dependencies
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class AllChecksRunnerTest extends GroovyTestCase {

@Test
public void testSingleCorrectHTMLFile() {
String HTML = """$HTML_HEAD<body><title>hsc</title></body></html>"""
String HTML = """$HTML_HEAD<title>hsc</title><body></body></html>"""

// create file with proper html content
tmpFile = File.createTempFile("testfile", ".html") <<HTML
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,7 @@ class BrokenHttpLinksCheckerSpec extends Specification {
where:
goodUrl << [ "https://junit.org/junit4/javadoc/latest/org/junit/Before.html",
"http://plumelib.org/plume-util/api/org/plumelib/util/DeterministicObject.html",
"http://people.csail.mit.edu/cpacheco/publications/randoop-case-study-abstract.html",
"https://douglascayers.com/2015/05/30/how-to-set-custom-java-path-after-installing-jdk-8/"
"http://people.csail.mit.edu/cpacheco/publications/randoop-case-study-abstract.html"
]
}

Expand Down

0 comments on commit cc299e0

Please sign in to comment.