diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2018-11-01 10:42:02 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-01 10:42:02 -0700 |
commit | 26330aa99577b36afff9ff36a86d54978195ab2e (patch) | |
tree | e8a8753b51a89d20f6037659b8e521d0f16f116a /test/e2e/run_test.go | |
parent | 17716d787aadee778436641371b487441374484e (diff) | |
parent | a610f0f8697b4cba3f3ae68ac960eaf563c02b95 (diff) | |
download | podman-26330aa99577b36afff9ff36a86d54978195ab2e.tar.gz podman-26330aa99577b36afff9ff36a86d54978195ab2e.tar.bz2 podman-26330aa99577b36afff9ff36a86d54978195ab2e.zip |
Merge pull request #1746 from baude/renamebaude
replace quay.io/baude to quay.io/libpod
Diffstat (limited to 'test/e2e/run_test.go')
-rw-r--r-- | test/e2e/run_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/e2e/run_test.go b/test/e2e/run_test.go index d362c1646..98bf66a67 100644 --- a/test/e2e/run_test.go +++ b/test/e2e/run_test.go @@ -52,13 +52,13 @@ var _ = Describe("Podman run", func() { It("podman run a container based on on a short name with localhost", func() { podmanTest.RestoreArtifact(nginx) - tag := podmanTest.Podman([]string{"tag", nginx, "localhost/baude/alpine_nginx:latest"}) + tag := podmanTest.Podman([]string{"tag", nginx, "localhost/libpod/alpine_nginx:latest"}) tag.WaitWithDefaultTimeout() rmi := podmanTest.Podman([]string{"rmi", nginx}) rmi.WaitWithDefaultTimeout() - session := podmanTest.Podman([]string{"run", "baude/alpine_nginx:latest", "ls"}) + session := podmanTest.Podman([]string{"run", "libpod/alpine_nginx:latest", "ls"}) session.WaitWithDefaultTimeout() Expect(session.ErrorToString()).ToNot(ContainSubstring("Trying to pull")) Expect(session.ExitCode()).To(Equal(0)) |