summaryrefslogtreecommitdiff
path: root/test/e2e/run_test.go
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2018-11-01 10:31:44 -0500
committerbaude <bbaude@redhat.com>2018-11-01 10:31:44 -0500
commita610f0f8697b4cba3f3ae68ac960eaf563c02b95 (patch)
tree881dce572e22fe7037a05c8ad61eb763c38cccd3 /test/e2e/run_test.go
parent20a3a53c2faea408af47023ea60c76b5b5ecea3c (diff)
downloadpodman-a610f0f8697b4cba3f3ae68ac960eaf563c02b95.tar.gz
podman-a610f0f8697b4cba3f3ae68ac960eaf563c02b95.tar.bz2
podman-a610f0f8697b4cba3f3ae68ac960eaf563c02b95.zip
replace quay.io/baude to quay.io/libpod
images used for our integration suite have moved from my work account to a group organization called libpod. Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'test/e2e/run_test.go')
-rw-r--r--test/e2e/run_test.go4
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))