From f7cbb1d8451ae8b9b338aa416e443517a326edba Mon Sep 17 00:00:00 2001 From: Ed Santiago Date: Tue, 30 Nov 2021 09:48:31 -0700 Subject: 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 --- test/e2e/systemd_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/e2e/systemd_test.go') diff --git a/test/e2e/systemd_test.go b/test/e2e/systemd_test.go index 2ad8e81e6..bbbec1648 100644 --- a/test/e2e/systemd_test.go +++ b/test/e2e/systemd_test.go @@ -93,7 +93,7 @@ WantedBy=default.target systemctl := podmanTest.Podman([]string{"exec", "-t", "-i", ctrName, "systemctl", "status", "--no-pager"}) systemctl.WaitWithDefaultTimeout() Expect(systemctl).Should(Exit(0)) - Expect(strings.Contains(systemctl.OutputToString(), "State:")).To(BeTrue()) + Expect(systemctl.OutputToString()).To(ContainSubstring("State:")) result := podmanTest.Podman([]string{"inspect", ctrName}) result.WaitWithDefaultTimeout() -- cgit v1.2.3-54-g00ecf