Skip to content

Commit 885f015

Browse files
fix lint issues
Signed-off-by: Rashmi Gottipati <rgottipa@redhat.com>
1 parent 7a8ab66 commit 885f015

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

internal/operator-controller/catalogmetadata/filter/successors_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,10 +241,10 @@ func TestLegacySuccessor(t *testing.T) {
241241
assert.False(t, f(emptyBundle))
242242
}
243243

244-
// TestSuccessorsOf_WithReleaseVersionSupport_FeatureGateDisabled verifies higher releases
244+
// TestSuccessorsOf_WithReleaseVersionPriority_FeatureGateDisabled verifies higher releases
245245
// are NOT successors when ReleaseVersionPriority gate is disabled (default).
246246
// TODO: Feature gate enabled behavior must be tested in E2E tests.
247-
func TestSuccessorsOf_WithReleaseVersionSupport_FeatureGateDisabled(t *testing.T) {
247+
func TestSuccessorsOf_WithReleaseVersionPriority_FeatureGateDisabled(t *testing.T) {
248248
channel := declcfg.Channel{
249249
Entries: []declcfg.ChannelEntry{
250250
{Name: "test-package.v1.0.0+1"},

internal/operator-controller/features/features.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const (
1919
HelmChartSupport featuregate.Feature = "HelmChartSupport"
2020
BoxcutterRuntime featuregate.Feature = "BoxcutterRuntime"
2121
DeploymentConfig featuregate.Feature = "DeploymentConfig"
22-
ReleaseVersionPriority featuregate.Feature = "ReleaseVersionPriority"
22+
ReleaseVersionPriority featuregate.Feature = "ReleaseVersionPriority"
2323
)
2424

2525
var operatorControllerFeatureGates = map[featuregate.Feature]featuregate.FeatureSpec{

0 commit comments

Comments
 (0)