From 03f9f75e880e5f171dc78e09621e8dc5917dd5a6 Mon Sep 17 00:00:00 2001 From: Raymonder jin Date: Mon, 28 Jun 2021 04:54:09 -0700 Subject: [PATCH] fix typo for daemon_controller_test.go --- pkg/controller/daemon/daemon_controller_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/controller/daemon/daemon_controller_test.go b/pkg/controller/daemon/daemon_controller_test.go index a16dfc9e685..2ae12186edf 100644 --- a/pkg/controller/daemon/daemon_controller_test.go +++ b/pkg/controller/daemon/daemon_controller_test.go @@ -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)