We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8062b16 commit a52e1a9Copy full SHA for a52e1a9
1 file changed
src/test/java/org/htmlunit/TestCaseTest.java
@@ -60,7 +60,8 @@ private void generateTestForHtmlElements(final File dir) throws Exception {
60
if (file.isDirectory() && !".git".equals(file.getName())) {
61
generateTestForHtmlElements(file);
62
}
63
- else if (file.getName().endsWith(".java")) {
+ else if (file.getName().endsWith(".java")
64
+ && !file.getName().endsWith("HtmlTagSupportTest.java")) {
65
final List<String> lines = FileUtils.readLines(file, ISO_8859_1);
66
for (final String line : lines) {
67
if (line.contains("(\"xmp\")")) {
0 commit comments