Skip to content

Commit

Permalink
Fix eclipse facet test java version
Browse files Browse the repository at this point in the history
  • Loading branch information
cherylking committed Oct 20, 2023
1 parent 4617f9b commit 7351a9d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public class TestEclipseFacetsWar extends AbstractIntegrationTest{
if (attributes.getAt('facet').equals('jst.web') && attributes.getAt('version').equals('3.0')) {
hasJstWebFacet = true
}
if (attributes.getAt('facet').equals('jst.java') && attributes.getAt('version').equals('1.7')) {
if (attributes.getAt('facet').equals('jst.java') && attributes.getAt('version').equals('1.8')) {
hasJavaFacet = true
}
}
Expand Down

0 comments on commit 7351a9d

Please sign in to comment.