aboutsummaryrefslogtreecommitdiff
path: root/test/e2e/inspect_test.go
diff options
context:
space:
mode:
authoropenshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com>2022-07-06 07:04:50 +0000
committerGitHub <noreply@github.com>2022-07-06 07:04:50 +0000
commit53ea7c04ef3d7fac035a004605eaa1c0edd95f3c (patch)
tree523dcf7adf7759bbe8140396694b091241c7eae4 /test/e2e/inspect_test.go
parentcf747399b13432d000cfd9556a248681363dda2d (diff)
parent4fd5fb97a0f8315a7c5291c6b1a65897c0c937d1 (diff)
downloadpodman-53ea7c04ef3d7fac035a004605eaa1c0edd95f3c.tar.gz
podman-53ea7c04ef3d7fac035a004605eaa1c0edd95f3c.tar.bz2
podman-53ea7c04ef3d7fac035a004605eaa1c0edd95f3c.zip
Merge pull request #14834 from edsantiago/capitalize_constants
e2e tests: cleanup: capitalize CONSTANTS
Diffstat (limited to 'test/e2e/inspect_test.go')
-rw-r--r--test/e2e/inspect_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/e2e/inspect_test.go b/test/e2e/inspect_test.go
index 6fe850f0b..1ce2fa93d 100644
--- a/test/e2e/inspect_test.go
+++ b/test/e2e/inspect_test.go
@@ -182,8 +182,8 @@ var _ = Describe("Podman inspect", func() {
})
It("podman inspect shows healthcheck on docker image", func() {
- podmanTest.AddImageToRWStore(healthcheck)
- session := podmanTest.Podman([]string{"inspect", "--format=json", healthcheck})
+ podmanTest.AddImageToRWStore(HEALTHCHECK_IMAGE)
+ session := podmanTest.Podman([]string{"inspect", "--format=json", HEALTHCHECK_IMAGE})
session.WaitWithDefaultTimeout()
imageData := session.InspectImageJSON()
Expect(imageData[0].HealthCheck.Timeout).To(BeNumerically("==", 3000000000))