diff --git a/pkg/machine/e2e/help_test.go b/pkg/machine/e2e/help_test.go index 48f653c5ca..46cc31fe10 100644 --- a/pkg/machine/e2e/help_test.go +++ b/pkg/machine/e2e/help_test.go @@ -1,9 +1,6 @@ package e2e_test import ( - "regexp" - "slices" - . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" . "github.com/onsi/gomega/gexec" @@ -16,8 +13,6 @@ var _ = Describe("podman help", func() { Expect(helpSession).Should(Exit(0)) // Verify `.exe` suffix doesn't present in the usage command string - helpMessages := helpSession.outputToStringSlice() - usageCmdIndex := slices.IndexFunc(helpMessages, func(helpMessage string) bool { return helpMessage == "Usage:" }) + 1 - Expect(regexp.MustCompile(`\w\.exe\b`).MatchString(helpMessages[usageCmdIndex])).Should(BeFalse()) + Expect(helpSession.outputToString()).ToNot(ContainSubstring(".exe")) }) })