Skip to content

Commit

Permalink
Test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gbevin committed Jun 23, 2024
1 parent ecb9289 commit e65668a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/test/java/rife/bld/operations/TestPublishOperation.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ static void deleteReposilite()
static class PublishProject extends AppProjectBlueprint {
public PublishProject(File work, String packageName, String projectName, VersionNumber versionNumber) {
super(work, packageName, projectName, versionNumber);
javaRelease = 19;
javaRelease = 17;
}
}

Expand Down Expand Up @@ -119,6 +119,8 @@ void testPopulation() {
assertEquals(moment, operation3.moment());
assertTrue(operation3.artifacts().contains(artifact1));
assertTrue(operation3.artifacts().contains(artifact2));
assertEquals(17, operation3.properties().mavenCompilerSource());
assertEquals(19, operation3.properties().mavenCompilerTarget());
}

@Test
Expand Down

0 comments on commit e65668a

Please sign in to comment.