Merge pull request #103259 from mamil/fix-typo

fix typo for daemon_controller_test.go
This commit is contained in:
Kubernetes Prow Robot 2021-08-04 19:00:07 -07:00 committed by GitHub
commit 06ae9a2ad7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -571,7 +571,7 @@ func TestExpectationsOnRecreate(t *testing.T) {
t.Fatalf("No expectations found for DaemonSet %q", oldDSKey)
}
if dsExp.Fulfilled() {
t.Errorf("There should be unfulfiled expectation for creating new pods for DaemonSet %q", oldDSKey)
t.Errorf("There should be unfulfilled expectation for creating new pods for DaemonSet %q", oldDSKey)
}
// process updates DS, update adds to queue
@ -641,7 +641,7 @@ func TestExpectationsOnRecreate(t *testing.T) {
t.Fatalf("No expectations found for DaemonSet %q", oldDSKey)
}
if dsExp.Fulfilled() {
t.Errorf("There should be unfulfiled expectation for creating new pods for DaemonSet %q", oldDSKey)
t.Errorf("There should be unfulfilled expectation for creating new pods for DaemonSet %q", oldDSKey)
}
err = validateSyncDaemonSets(manager, fakePodControl, 1, 0, 0)