From cda593e822d2e03f621167f007c183faf5b1d910 Mon Sep 17 00:00:00 2001 From: lo24 Date: Tue, 26 May 2020 16:06:36 +0000 Subject: [PATCH] fix TestValidateNodeIPParam: break was being used instead of continue --- pkg/kubelet/kubelet_node_status_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/kubelet/kubelet_node_status_test.go b/pkg/kubelet/kubelet_node_status_test.go index e60f80bf65c..64b5bde3da1 100644 --- a/pkg/kubelet/kubelet_node_status_test.go +++ b/pkg/kubelet/kubelet_node_status_test.go @@ -1902,7 +1902,7 @@ func TestValidateNodeIPParam(t *testing.T) { ip = v.IP } if ip.IsLoopback() || ip.IsLinkLocalUnicast() { - break + continue } successTest := test{ nodeIP: ip.String(),