From b0694c0d951107c5643307f0cf5e59d0ab70b403 Mon Sep 17 00:00:00 2001 From: Richard Schneeman Date: Mon, 11 Sep 2023 16:07:19 -0500 Subject: [PATCH] Fix test ``` failures: ---- test_barnes_app stdout ---- PID TTY STAT TIME COMMAND 1 ? Rs 0:00 ps x 14 ? R 0:00 [start-stop-daem] thread 'test_barnes_app' panicked at 'assertion failed: `(left contains right)` left (unescaped): PID TTY STAT TIME COMMAND 1 ? Rs 0:00 ps x 14 ? R 0:00 [start-stop-daem] left (escaped): `" PID TTY STAT TIME COMMAND\n 1 ? Rs 0:00 ps x\n 14 ? R 0:00 [start-stop-daem]\n"` right: `"agentmon_loop --path"`', buildpacks/ruby/tests/integration_test.rs:138:21 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace ``` --- buildpacks/ruby/tests/integration_test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildpacks/ruby/tests/integration_test.rs b/buildpacks/ruby/tests/integration_test.rs index cbc7e560..2f9d0bf1 100644 --- a/buildpacks/ruby/tests/integration_test.rs +++ b/buildpacks/ruby/tests/integration_test.rs @@ -129,7 +129,7 @@ fn test_barnes_app() { ("DYNO", "web.1"), ("PORT", "1234"), ]) - .command(["ps x"]), + .command(["ps ax"]), |container| { let log_output = container.logs_wait(); println!("{}", log_output.stdout);