From 2e0ff3d14c875bd6538b498825738732a14e2c4a Mon Sep 17 00:00:00 2001 From: corneredrat Date: Thu, 9 Feb 2023 23:10:38 +0530 Subject: [PATCH] fix unit tests --- pkg/healthchecker/types/types_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/healthchecker/types/types_test.go b/pkg/healthchecker/types/types_test.go index d8c9b1a1..007f79c5 100644 --- a/pkg/healthchecker/types/types_test.go +++ b/pkg/healthchecker/types/types_test.go @@ -157,7 +157,7 @@ func TestKubeEndpointConfiguration(t *testing.T) { name: "HOST_ADDRESS, KUBELET_PORT and KUBEPROXY_PORT override supplied", envConfig: map[string]string{ "HOST_ADDRESS": "10.0.10.1", - "KUBELET_PROXY": "12345", + "KUBELET_PORT": "12345", "KUBEPROXY_PORT": "12346", }, expectedKubeletEndpoint: "http://10.0.10.1:12345/healthz",