From d9a4b668ca54f302310d5cc6a08dd7bfc6e1e19f Mon Sep 17 00:00:00 2001 From: Todd Short Date: Wed, 1 Apr 2026 09:47:36 -0400 Subject: [PATCH] Update test to use proper step pattern. Found by CodeRabbit: Line 625 has an undefined step: `${TEST_NAMESPACE}` does not match the registered step pattern. The step definition for "with needed permissions" is registered only for the literal in test namespace pattern (verified in test/e2e/steps/steps.go line 128). Line 625 uses `in ${TEST_NAMESPACE}`, which will cause the e2e test to fail with an undefined step error. Update it to match the registered pattern. Signed-off-by: Todd Short --- test/e2e/features/install.feature | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/features/install.feature b/test/e2e/features/install.feature index 74a90beb1..9b7025d9a 100644 --- a/test/e2e/features/install.feature +++ b/test/e2e/features/install.feature @@ -622,7 +622,7 @@ Feature: Install ClusterExtension """ Verbs:[create] """ - When ServiceAccount "olm-sa" with needed permissions is available in ${TEST_NAMESPACE} + When ServiceAccount "olm-sa" with needed permissions is available in test namespace Then ClusterExtension is available And ClusterExtension reports Progressing as True with Reason Succeeded And ClusterExtension reports Installed as True