diff options
author | openshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com> | 2022-07-06 07:04:50 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-06 07:04:50 +0000 |
commit | 53ea7c04ef3d7fac035a004605eaa1c0edd95f3c (patch) | |
tree | 523dcf7adf7759bbe8140396694b091241c7eae4 /test/e2e/run_staticip_test.go | |
parent | cf747399b13432d000cfd9556a248681363dda2d (diff) | |
parent | 4fd5fb97a0f8315a7c5291c6b1a65897c0c937d1 (diff) | |
download | podman-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/run_staticip_test.go')
-rw-r--r-- | test/e2e/run_staticip_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/run_staticip_test.go b/test/e2e/run_staticip_test.go index 09fb4e03c..8207f6d0b 100644 --- a/test/e2e/run_staticip_test.go +++ b/test/e2e/run_staticip_test.go @@ -101,7 +101,7 @@ var _ = Describe("Podman run with --ip flag", func() { It("Podman run two containers with the same IP", func() { ip := GetRandomIPAddress() - result := podmanTest.Podman([]string{"run", "-d", "--name", "nginx", "--ip", ip, nginx}) + result := podmanTest.Podman([]string{"run", "-d", "--name", "nginx", "--ip", ip, NGINX_IMAGE}) result.WaitWithDefaultTimeout() Expect(result).Should(Exit(0)) |