diff options
Diffstat (limited to 'test/kpod_pause.bats')
-rw-r--r-- | test/kpod_pause.bats | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/kpod_pause.bats b/test/kpod_pause.bats index 23c27ae71..3d6ab7b91 100644 --- a/test/kpod_pause.bats +++ b/test/kpod_pause.bats @@ -29,7 +29,10 @@ function teardown() { ctr_id="$output" run bash -c "${KPOD_BINARY} ${KPOD_OPTIONS} pause $ctr_id" echo "$output" - [ "$status" -eq 1 ] + [ "$status" -eq 0 ] + run bash -c "${KPOD_BINARY} ${KPOD_OPTIONS} unpause $ctr_id" + echo "$output" + [ "$status" -eq 0 ] run bash -c "${KPOD_BINARY} ${KPOD_OPTIONS} rm $ctr_id" echo "$output" [ "$status" -eq 0 ] |