Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
schneems committed Jan 22, 2025
1 parent 134bbf7 commit 4d12227
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildpacks/maven/tests/integration/customization.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use libcnb_test::{assert_contains, TestRunner};
fn maven_custom_goals() {
TestRunner::default().build(default_build_config("test-apps/simple-http-service").env("MAVEN_CUSTOM_GOALS", "site"), |context| {
// Assert only the goals in MAVEN_CUSTOM_GOALS are executed
assert_contains!(context.pack_stderr, "./mvnw -DskipTests site");
assert_contains!(context.pack_stderr, "./mvnw -DskipTests -B site");
assert_contains!(context.pack_stderr,"[INFO] --- maven-site-plugin:3.7.1:site (default-site) @ simple-http-service ---");

// The dependency list is implemented by using the dependency:list goal. We need to
Expand Down

0 comments on commit 4d12227

Please sign in to comment.