diff options
Diffstat (limited to 'test/podman_exec.bats')
-rw-r--r-- | test/podman_exec.bats | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/podman_exec.bats b/test/podman_exec.bats index 76114aa0a..2d6a42704 100644 --- a/test/podman_exec.bats +++ b/test/podman_exec.bats @@ -13,13 +13,13 @@ function setup() { @test "exec into a bogus container" { run ${PODMAN_BINARY} ${PODMAN_OPTIONS} exec foobar ls echo "$output" - [ "$status" -eq 1 ] + [ "$status" -eq 125 ] } @test "exec without command should fail" { run ${PODMAN_BINARY} ${PODMAN_OPTIONS} exec foobar echo "$output" - [ "$status" -eq 1 ] + [ "$status" -eq 125 ] } @test "exec simple command" { |