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/mount_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/mount_test.go')
-rw-r--r-- | test/e2e/mount_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/mount_test.go b/test/e2e/mount_test.go index 61abdf6fc..3197aa655 100644 --- a/test/e2e/mount_test.go +++ b/test/e2e/mount_test.go @@ -77,7 +77,7 @@ var _ = Describe("Podman mount", func() { j := podmanTest.Podman([]string{"mount", "--format=json"}) j.WaitWithDefaultTimeout() Expect(j.ExitCode()).To(Equal(0)) - Expect(j.IsJSONOutputValid()) + Expect(j.IsJSONOutputValid()).To(BeTrue()) umount := podmanTest.Podman([]string{"umount", cid}) umount.WaitWithDefaultTimeout() |