Skip to content

Commit

Permalink
fix call to New()
Browse files Browse the repository at this point in the history
  • Loading branch information
AVSBharadwaj committed Jan 22, 2025
1 parent 00134fe commit d6b89b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/hpa/service_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5002,7 +5002,7 @@ func TestService_IsHpaMetricAvailable(t *testing.T) {
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
c, err := New(fake.NewClientBuilder().Build(), record.NewFakeRecorder(10), 0.95, 90, 100, time.Hour, 100, 1000, 3, "")
c, err := New(fake.NewClientBuilder().Build(), record.NewFakeRecorder(10), 0.95, 90, 100, time.Hour, 100, 1000, 3, []config.ServiceGroup{}, []config.MaximumMaxReplicasPerGroup{}, "")
if err != nil {
t.Fatalf("New() error = %v", err)
}
Expand Down

0 comments on commit d6b89b9

Please sign in to comment.