summaryrefslogtreecommitdiff
path: root/test/e2e/pod_inspect_test.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-04-27 11:58:46 +0200
committerGitHub <noreply@github.com>2020-04-27 11:58:46 +0200
commite88b2dc0c9ba6ddadb6bf31f652e1ad41468f58f (patch)
tree5738cda26120027f5bc1646d3e51bc0eb5b28216 /test/e2e/pod_inspect_test.go
parent7c9a8fc93d1700bf0399bf78fc875fb1edb93651 (diff)
parentc1766d5e6496d48d357907598a44e147642a877e (diff)
downloadpodman-e88b2dc0c9ba6ddadb6bf31f652e1ad41468f58f.tar.gz
podman-e88b2dc0c9ba6ddadb6bf31f652e1ad41468f58f.tar.bz2
podman-e88b2dc0c9ba6ddadb6bf31f652e1ad41468f58f.zip
Merge pull request #5992 from sujil02/v2-pod-inspect
Enable pod inspect integration test
Diffstat (limited to 'test/e2e/pod_inspect_test.go')
-rw-r--r--test/e2e/pod_inspect_test.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/e2e/pod_inspect_test.go b/test/e2e/pod_inspect_test.go
index d86c36f58..f87bbe047 100644
--- a/test/e2e/pod_inspect_test.go
+++ b/test/e2e/pod_inspect_test.go
@@ -54,8 +54,7 @@ var _ = Describe("Podman pod inspect", func() {
inspect.WaitWithDefaultTimeout()
Expect(inspect.ExitCode()).To(Equal(0))
Expect(inspect.IsJSONOutputValid()).To(BeTrue())
- // FIXME sujil, disabled for now
- //podData := inspect.InspectPodToJSON()
- //Expect(podData.Config.ID).To(Equal(podid))
+ podData := inspect.InspectPodToJSON()
+ Expect(podData.ID).To(Equal(podid))
})
})