From c610e4239a8e6ed56dab552e85231681c4ddb48e Mon Sep 17 00:00:00 2001 From: Kui Wang Date: Sun, 28 Sep 2025 12:04:35 +0800 Subject: [PATCH] correct suite name --- tests-extension/cmd/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests-extension/cmd/main.go b/tests-extension/cmd/main.go index 6fb24dceb1..28051ed486 100644 --- a/tests-extension/cmd/main.go +++ b/tests-extension/cmd/main.go @@ -137,7 +137,7 @@ func main() { // Extended Candidate Function Suite: Extended functional tests that don't meet OpenShift CI requirements // Contains extended tests that are not for openshift-tests and exclude stress tests ext.AddSuite(e.Suite{ - Name: "olmv1/extended/candidate/function", + Name: "olmv0/extended/candidate/function", Qualifiers: []string{ filters.BasedExtendedCandidateFuncTests(``), }, @@ -182,7 +182,7 @@ func main() { // Contains all extended functional tests that are not marked as [Slow] (includes both Serial and Parallel) // This provides a comprehensive functional test coverage with reasonable execution time ext.AddSuite(e.Suite{ - Name: "olmv1/extended/candidate/fast", + Name: "olmv0/extended/candidate/fast", Qualifiers: []string{ filters.BasedExtendedCandidateFuncTests(`!name.contains("[Slow]")`), },