Skip to content

Commit

Permalink
Fix integration tests to use inherited stdio
Browse files Browse the repository at this point in the history
  • Loading branch information
mars committed Dec 10, 2024
1 parent 6978e39 commit 2b1c529
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions buildpacks/release-phase/tests/integration_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ fn project_uses_release_build() {
assert_contains!(log_output.stderr, "release-phase plan");
assert_contains!(log_output.stdout, "Build in Release Phase Buildpack!");
assert_contains!(
log_output.stdout,
log_output.stderr,
"save-release-artifacts writing archive: release-xyz.tgz"
);
assert_contains!(log_output.stderr, "release-phase complete.");
Expand Down Expand Up @@ -108,7 +108,7 @@ fn project_uses_release_build_and_web_process_loads_artifacts() {
assert_contains!(log_output.stderr, "release-phase plan");
assert_contains!(log_output.stdout, "Build in Release Phase Buildpack!");
assert_contains!(
log_output.stdout,
log_output.stderr,
format!("save-release-artifacts writing archive: release-{unique}.tgz")
.as_str()
);
Expand Down

0 comments on commit 2b1c529

Please sign in to comment.