diff options
Diffstat (limited to 'test/kpod_create.bats')
-rw-r--r-- | test/kpod_create.bats | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/kpod_create.bats b/test/kpod_create.bats index 46a460ecd..225ecca98 100644 --- a/test/kpod_create.bats +++ b/test/kpod_create.bats @@ -9,9 +9,7 @@ function teardown() { ALPINE="docker.io/library/alpine:latest" @test "create a container based on local image" { - run ${KPOD_BINARY} ${KPOD_OPTIONS} pull docker.io/library/busybox:latest - echo "$output" - [ "$status" -eq 0 ] + ${KPOD_BINARY} ${KPOD_OPTIONS} pull docker.io/library/busybox:latest run ${KPOD_BINARY} ${KPOD_OPTIONS} create docker.io/library/busybox:latest ls echo "$output" [ "$status" -eq 0 ] |