aboutsummaryrefslogtreecommitdiff
path: root/test/e2e/run_volume_test.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-04-28 10:25:46 -0400
committerGitHub <noreply@github.com>2022-04-28 10:25:46 -0400
commit87454cf87a36f3cab0a8a613d20011fc896b1ce4 (patch)
tree4428e8213fb04163a1670b15d8a60671aab0adac /test/e2e/run_volume_test.go
parentd0b96a541dc69e98d1923f8b297876f787bdb2db (diff)
parenta5aea8e503e6b2e6226392008c975444c76bc55b (diff)
downloadpodman-87454cf87a36f3cab0a8a613d20011fc896b1ce4.tar.gz
podman-87454cf87a36f3cab0a8a613d20011fc896b1ce4.tar.bz2
podman-87454cf87a36f3cab0a8a613d20011fc896b1ce4.zip
Merge pull request #14040 from edsantiago/gomega_havefield
e2e tests: use HaveField() for better error checking
Diffstat (limited to 'test/e2e/run_volume_test.go')
-rw-r--r--test/e2e/run_volume_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/e2e/run_volume_test.go b/test/e2e/run_volume_test.go
index a31c1959e..4f1013f8d 100644
--- a/test/e2e/run_volume_test.go
+++ b/test/e2e/run_volume_test.go
@@ -588,8 +588,8 @@ VOLUME /test/`, ALPINE)
data := podmanTest.InspectContainer(ctrName)
Expect(data).To(HaveLen(1))
Expect(data[0].Mounts).To(HaveLen(1))
- Expect(data[0].Mounts[0].Source).To(Equal("/tmp"))
- Expect(data[0].Mounts[0].Destination).To(Equal("/test"))
+ Expect(data[0].Mounts[0]).To(HaveField("Source", "/tmp"))
+ Expect(data[0].Mounts[0]).To(HaveField("Destination", "/test"))
})
It("podman run with overlay volume flag", func() {