diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-09-05 12:49:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-05 12:49:21 +0200 |
commit | b962b1e3538312f145aea0cf5546ae31f35f635f (patch) | |
tree | 3a385453db942b9d8ba62dc8a96ec1d68f4634cd /test/e2e/images_test.go | |
parent | e74fcd73357954fe5a0b027cf195c04345703985 (diff) | |
parent | 95f5411e88cb8b40142a7000dc0d1a90071e5c50 (diff) | |
download | podman-b962b1e3538312f145aea0cf5546ae31f35f635f.tar.gz podman-b962b1e3538312f145aea0cf5546ae31f35f635f.tar.bz2 podman-b962b1e3538312f145aea0cf5546ae31f35f635f.zip |
Merge pull request #3943 from gabibeyer/fix_tests
Fix unit tests missing comparative for 'Expect'
Diffstat (limited to 'test/e2e/images_test.go')
-rw-r--r-- | test/e2e/images_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/e2e/images_test.go b/test/e2e/images_test.go index 4eadc77e7..8203e4273 100644 --- a/test/e2e/images_test.go +++ b/test/e2e/images_test.go @@ -155,13 +155,13 @@ var _ = Describe("Podman images", func() { retapline.WaitWithDefaultTimeout() Expect(retapline.ExitCode()).To(Equal(0)) Expect(len(retapline.OutputToStringArray())).To(Equal(2)) - Expect(retapline.LineInOutputContains("alpine")) + Expect(retapline.LineInOutputContains("alpine")).To(BeTrue()) retapline = podmanTest.PodmanNoCache([]string{"images", "-f", "reference=alpine"}) retapline.WaitWithDefaultTimeout() Expect(retapline.ExitCode()).To(Equal(0)) Expect(len(retapline.OutputToStringArray())).To(Equal(2)) - Expect(retapline.LineInOutputContains("alpine")) + Expect(retapline.LineInOutputContains("alpine")).To(BeTrue()) retnone := podmanTest.PodmanNoCache([]string{"images", "-q", "-f", "reference=bogus"}) retnone.WaitWithDefaultTimeout() |