From 5bb87ee76fa642c9e5db97cd9c7788067fb76e22 Mon Sep 17 00:00:00 2001 From: Ondrej Pokorny Date: Mon, 9 Mar 2026 11:19:34 +0100 Subject: [PATCH] feat: remove test exception for Insights operator Remove the exception used in the test that checks whether the progressing condition is updated during a cluster update. Signed-off-by: Ondrej Pokorny --- .../clusterversionoperator/legacycvomonitortests/operators.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkg/monitortests/clusterversionoperator/legacycvomonitortests/operators.go b/pkg/monitortests/clusterversionoperator/legacycvomonitortests/operators.go index bdbec7fc83ef..8ab5224c5789 100644 --- a/pkg/monitortests/clusterversionoperator/legacycvomonitortests/operators.go +++ b/pkg/monitortests/clusterversionoperator/legacycvomonitortests/operators.go @@ -183,7 +183,6 @@ func getControlPlaneTopology(clientConfig *rest.Config) (configv1.TopologyMode, // we ignore the event. // If we don't find any upgrade ending point, we assume the ending point is at the end of the test. func getUpgradeWindows(eventList monitorapi.Intervals) []*upgradeWindowHolder { - var upgradeWindows []*upgradeWindowHolder var currentWindow *upgradeWindowHolder @@ -696,8 +695,6 @@ func testUpgradeOperatorProgressingStateTransitions(events monitorapi.Intervals, return "https://issues.redhat.com/browse/OCPBUGS-64852" case "cloud-credential": return "https://issues.redhat.com/browse/OCPBUGS-65580" - case "insights": - return "https://issues.redhat.com/browse/OCPBUGS-65582" case "kube-scheduler": return "https://issues.redhat.com/browse/OCPBUGS-65941" case "marketplace": @@ -1009,7 +1006,6 @@ func getOperatorsFromProgressingMessage(message string) sets.Set[string] { return nil } else { ret.Insert(strings.Split(message[i+len(ProgressingWaitingCOsKey):], ", ")...) - } return ret }