From 0c6f38e2fff4b9d7e8a6fc35526a966749ad57ab Mon Sep 17 00:00:00 2001 From: neilblaze Date: Wed, 8 Mar 2023 16:06:35 +0530 Subject: [PATCH] minor syntax fix Signed-off-by: Pratyay Banerjee --- connectivity/tests/host.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/connectivity/tests/host.go b/connectivity/tests/host.go index 4e2ad0defe..3a036d84c8 100644 --- a/connectivity/tests/host.go +++ b/connectivity/tests/host.go @@ -99,7 +99,7 @@ func (s *podToHostPort) Run(ctx context.Context, t *check.Test) { var ipFamStr string - t.ForEachIPFamily(func(ipFam check.IPFamily) { + t.ForEachIPFamily(func(ipFam check.IPFamily)) { if ipFam == check.IPv4 { ipFamStr = "v4" } else if ipFam == check.IPv6 { @@ -120,6 +120,7 @@ func (s *podToHostPort) Run(ctx context.Context, t *check.Test) { }) i++ + } } } }