diff options
author | Ed Santiago <santiago@redhat.com> | 2021-11-30 09:48:31 -0700 |
---|---|---|
committer | Ed Santiago <santiago@redhat.com> | 2021-11-30 09:53:15 -0700 |
commit | f7cbb1d8451ae8b9b338aa416e443517a326edba (patch) | |
tree | cc92721ee136f5ec472cc457cb6de542fade2110 /test/e2e/volume_inspect_test.go | |
parent | 12787963b04f91a7fec9aa0d6915666e43aeb269 (diff) | |
download | podman-f7cbb1d8451ae8b9b338aa416e443517a326edba.tar.gz podman-f7cbb1d8451ae8b9b338aa416e443517a326edba.tar.bz2 podman-f7cbb1d8451ae8b9b338aa416e443517a326edba.zip |
Convert strings.Contains() to Expect(ContainSubstring)
...done manually, not via sed, because some of the inner
expressions include nested commas.
Signed-off-by: Ed Santiago <santiago@redhat.com>
Diffstat (limited to 'test/e2e/volume_inspect_test.go')
-rw-r--r-- | test/e2e/volume_inspect_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/volume_inspect_test.go b/test/e2e/volume_inspect_test.go index 0389529f7..055be5b19 100644 --- a/test/e2e/volume_inspect_test.go +++ b/test/e2e/volume_inspect_test.go @@ -86,6 +86,6 @@ var _ = Describe("Podman volume inspect", func() { inspect := podmanTest.Podman([]string{"volume", "inspect", volName}) inspect.WaitWithDefaultTimeout() Expect(inspect).Should(Exit(0)) - Expect(strings.Contains(inspect.OutputToString(), "tmpfs")).To(BeTrue()) + Expect(inspect.OutputToString()).To(ContainSubstring("tmpfs")) }) }) |