From 8b5aabf70363d8a9077b63054fd5b6a5f49d57fc Mon Sep 17 00:00:00 2001 From: gabemontero Date: Thu, 14 Jan 2021 13:04:26 -0500 Subject: [PATCH] broaden acceptance of scl sample s2i image usage messages --- test/extended/image_ecosystem/scl.go | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/test/extended/image_ecosystem/scl.go b/test/extended/image_ecosystem/scl.go index 518fc0b7a31c..169c682c20cf 100644 --- a/test/extended/image_ecosystem/scl.go +++ b/test/extended/image_ecosystem/scl.go @@ -78,6 +78,15 @@ func defineTest(name string, t tc, oc *exutil.CLI) { if strings.Contains(string(log), "Sample invocation") { return true, nil } + if strings.Contains(string(log), "oc new-app") { + return true, nil + } + if strings.Contains(string(log), "OpenShift") { + return true, nil + } + if strings.Contains(string(log), "Openshift") { + return true, nil + } return false, nil }) o.Expect(err).NotTo(o.HaveOccurred())