diff --git a/pkg/controller/podautoscaler/legacy_horizontal_test.go b/pkg/controller/podautoscaler/legacy_horizontal_test.go index dfcda2e294d..8b42fe9a8ed 100644 --- a/pkg/controller/podautoscaler/legacy_horizontal_test.go +++ b/pkg/controller/podautoscaler/legacy_horizontal_test.go @@ -472,7 +472,11 @@ func (tc *legacyTestCase) runTest(t *testing.T) { if tc.finished { return true, &v1.Event{}, nil } - obj := action.(core.CreateAction).GetObject().(*v1.Event) + create, ok := action.(core.CreateAction) + if !ok { + return false, nil, nil + } + obj := create.GetObject().(*v1.Event) if tc.verifyEvents { switch obj.Reason { case "SuccessfulRescale":