Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
minor syntax fix
Browse files Browse the repository at this point in the history
Signed-off-by: Pratyay Banerjee <[email protected]>
Neilblaze committed Mar 8, 2023
1 parent 788544a commit 0c6f38e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion connectivity/tests/host.go
Original file line number Diff line number Diff line change
@@ -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++
}
}
}
}

0 comments on commit 0c6f38e

Please sign in to comment.