From bd5fdb7b70888de2fcd10d5138b5356193405b87 Mon Sep 17 00:00:00 2001 From: Harish P Date: Tue, 11 Jun 2024 19:13:31 +0530 Subject: [PATCH] Fixed lint issues Signed-off-by: Harish P --- controllers/acc_controller_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/acc_controller_test.go b/controllers/acc_controller_test.go index 47b7dc800..575496dcc 100644 --- a/controllers/acc_controller_test.go +++ b/controllers/acc_controller_test.go @@ -755,7 +755,7 @@ func TestSyncDeployment(t *testing.T) { }, apiv1.CreateOptions{}) assert.NoError(t, err) assert.NotNil(t, create) - // Simulate an error in Apply + //simulate an error in Apply k8sClient.PrependReactor("patch", "deployments", func(_ clienttesting.Action) (bool, runtime.Object, error) { return true, nil, fmt.Errorf("fake error") })