summaryrefslogtreecommitdiff
path: root/test/apiv2/20-containers.at
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-01-18 06:22:05 -0500
committerGitHub <noreply@github.com>2022-01-18 06:22:05 -0500
commitd6b0720b9cd5d993dffc229e73d8377aae2c2ed4 (patch)
treea0efd9dff39774597d87c98dbe089b57af77c726 /test/apiv2/20-containers.at
parentd0eb24bae0023848447568d024acdaadb632edfe (diff)
parent141de86862898a4b9e35c15f51031952c63c7114 (diff)
downloadpodman-d6b0720b9cd5d993dffc229e73d8377aae2c2ed4.tar.gz
podman-d6b0720b9cd5d993dffc229e73d8377aae2c2ed4.tar.bz2
podman-d6b0720b9cd5d993dffc229e73d8377aae2c2ed4.zip
Merge pull request #12684 from mheon/remap_states
Revamp Libpod state strings for Docker compat
Diffstat (limited to 'test/apiv2/20-containers.at')
-rw-r--r--test/apiv2/20-containers.at4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/apiv2/20-containers.at b/test/apiv2/20-containers.at
index 3d67650d2..72003984f 100644
--- a/test/apiv2/20-containers.at
+++ b/test/apiv2/20-containers.at
@@ -156,7 +156,7 @@ podman create -t -i --name myctr $IMAGE ls
# Check configuration before initializing
t GET libpod/containers/myctr/json 200 \
.Id~[0-9a-f]\\{64\\} \
- .State.Status="configured" \
+ .State.Status="created" \
.State.Pid=0 \
.ResolvConfPath="" \
.HostnamePath="" \
@@ -172,7 +172,7 @@ t POST libpod/containers/myctr/init 204
# Check configuration after initializing
t GET libpod/containers/myctr/json 200 \
.Id~[0-9a-f]\\{64\\} \
- .State.Status="created" \
+ .State.Status="initialized" \
.State.Pid~[0-9]\\{1\,8\\} \
.ResolvConfPath=$userdata_path/resolv.conf \
.HostnamePath=$userdata_path/hostname \