diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-12-01 22:38:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-01 22:38:58 +0100 |
commit | b2cd6e0402bcd425130e397d79588dc406eccf53 (patch) | |
tree | 621406623bc0dfed9de9bae1e904fb0d46326441 /test/e2e/pull_test.go | |
parent | 7f084a8ae212f1c2c67e9cfb1f9e4c5470e01870 (diff) | |
parent | 1f91521d24ac209938fa7524f657db8e0a30c20c (diff) | |
download | podman-b2cd6e0402bcd425130e397d79588dc406eccf53.tar.gz podman-b2cd6e0402bcd425130e397d79588dc406eccf53.tar.bz2 podman-b2cd6e0402bcd425130e397d79588dc406eccf53.zip |
Merge pull request #8542 from rhatdan/test
Fix typo in tests
Diffstat (limited to 'test/e2e/pull_test.go')
-rw-r--r-- | test/e2e/pull_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/pull_test.go b/test/e2e/pull_test.go index c572fc5ac..446e2bd38 100644 --- a/test/e2e/pull_test.go +++ b/test/e2e/pull_test.go @@ -385,7 +385,7 @@ var _ = Describe("Podman pull", func() { session := podmanTest.Podman([]string{"pull", "--all-tags", "k8s.gcr.io/pause"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) - Expect(session.LineInOuputStartsWith("Pulled Images:")).To(BeTrue()) + Expect(session.LineInOutputStartsWith("Pulled Images:")).To(BeTrue()) session = podmanTest.Podman([]string{"images"}) session.WaitWithDefaultTimeout() |