Skip to content

Commit

Permalink
Fix test case
Browse files Browse the repository at this point in the history
  • Loading branch information
cherylking committed May 4, 2024
1 parent b99426c commit d840084
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion liberty-maven-plugin/src/it/compile-jsp-it/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.source>1.8</maven.compiler.source>
</properties>

<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public void testXmlElements() throws Exception {
if (nodes.item(0) instanceof Element) {
Element child = (Element) nodes.item(0);
String nodeValue = child.getAttribute("javaSourceLevel");
Assert.assertTrue("Unexpected javaSourceLevel ==>"+nodeValue, nodeValue.equals("18"));
Assert.assertTrue("Unexpected javaSourceLevel ==>"+nodeValue, nodeValue.equals("8"));
}
}
}
Expand Down

0 comments on commit d840084

Please sign in to comment.