From 9a0748a927c2575527d762da062f6f108ac76d03 Mon Sep 17 00:00:00 2001 From: Praveen Kumar Date: Tue, 1 Aug 2023 15:25:50 +0530 Subject: [PATCH] Integration: Move user provided bundle msg to right block Currently, it is part of different block which print it out during testing of default bundle instead user provided one. --- test/e2e/testsuite/testsuite.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/testsuite/testsuite.go b/test/e2e/testsuite/testsuite.go index 117dfe0d9e..f9828aa306 100644 --- a/test/e2e/testsuite/testsuite.go +++ b/test/e2e/testsuite/testsuite.go @@ -89,10 +89,10 @@ func InitializeTestSuite(tctx *godog.TestSuiteContext) { } if bundleLocation == "" { - fmt.Println("Expecting the bundle provided by the user") userProvidedBundle = false bundleName = constants.GetDefaultBundle(preset.OpenShift) } else { + fmt.Println("Expecting the bundle provided by the user") userProvidedBundle = true _, bundleName = filepath.Split(bundleLocation) }