Check the length of recorder.invocations

This commit is contained in:
Ted Yu 2019-09-15 16:43:12 -07:00
parent 8126201b73
commit 5e5824f9c5

View File

@ -327,8 +327,10 @@ func testWebhookTimeout(t *testing.T, watchCache bool) {
}
}
for _, invocation := range recorder.invocations[len(tt.expectInvocations):] {
t.Errorf("unexpected invocation of %s", invocation.path)
if len(recorder.invocations) > len(tt.expectInvocations) {
for _, invocation := range recorder.invocations[len(tt.expectInvocations):] {
t.Errorf("unexpected invocation of %s", invocation.path)
}
}
}
})