Skip to content

Commit

Permalink
Fix launcher path in Paketo system tests
Browse files Browse the repository at this point in the history
  • Loading branch information
scottfrederick committed Oct 4, 2023
1 parent ee00014 commit 361f737
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,9 @@ void executableJarApp() throws Exception {
"paketo-buildpacks/executable-jar", "paketo-buildpacks/dist-zip",
"paketo-buildpacks/spring-boot");
metadata.processOfType("web")
.containsExactly("java", "org.springframework.boot.loader.launch.launch.JarLauncher");
.containsExactly("java", "org.springframework.boot.loader.launch.JarLauncher");
metadata.processOfType("executable-jar")
.containsExactly("java", "org.springframework.boot.loader.launch.launch.JarLauncher");
.containsExactly("java", "org.springframework.boot.loader.launch.JarLauncher");
});
assertImageHasJvmSbomLayer(imageReference, config);
assertImageHasDependenciesSbomLayer(imageReference, config, "executable-jar");
Expand Down

0 comments on commit 361f737

Please sign in to comment.