diff --git a/build.gradle b/build.gradle index e19f9634..8af8abd4 100755 --- a/build.gradle +++ b/build.gradle @@ -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 diff --git a/src/test/groovy/org/aim42/htmlsanitycheck/AllChecksRunnerTest.groovy b/src/test/groovy/org/aim42/htmlsanitycheck/AllChecksRunnerTest.groovy index 1e8da9dc..e4a0c169 100644 --- a/src/test/groovy/org/aim42/htmlsanitycheck/AllChecksRunnerTest.groovy +++ b/src/test/groovy/org/aim42/htmlsanitycheck/AllChecksRunnerTest.groovy @@ -16,7 +16,7 @@ class AllChecksRunnerTest extends GroovyTestCase { @Test public void testSingleCorrectHTMLFile() { - String HTML = """$HTML_HEADhsc""" + String HTML = """$HTML_HEADhsc""" // create file with proper html content tmpFile = File.createTempFile("testfile", ".html") <