From 2f64594c69a9bbed2b83dbe850e21131bd80f673 Mon Sep 17 00:00:00 2001 From: Roman Lomovtsev Date: Sat, 14 Dec 2024 17:43:44 +0300 Subject: [PATCH] fix build --- src/test/groovy/xslqual.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/groovy/xslqual.groovy b/src/test/groovy/xslqual.groovy index ca0dfe06d3..49b6d4e23d 100644 --- a/src/test/groovy/xslqual.groovy +++ b/src/test/groovy/xslqual.groovy @@ -138,7 +138,7 @@ rules.forEach { matchRule -> String xpath = matchRule.xpath String warning = matchRule.warning - XSLDocument check = new com.jcabi.xml.XSLDocument(""" + com.jcabi.xml.XSLDocument check = new com.jcabi.xml.XSLDocument(""" @@ -160,7 +160,7 @@ rules.forEach { nameFilter: ~/.*\.xsl/, ) { file -> - XMLDocument xsl = new com.jcabi.xml.XMLDocument(file) + com.jcabi.xml.XMLDocument xsl = new com.jcabi.xml.XMLDocument(file) String ret = check.applyTo(xsl) if (!ret.empty) { println " ERROR: ${file} (${ret})"