diff options
author | Kevin Krakauer <krakauer@google.com> | 2020-03-09 17:40:13 -0700 |
---|---|---|
committer | Kevin Krakauer <krakauer@google.com> | 2020-03-11 15:13:58 -0700 |
commit | 4054b021f05cb0902e9877ba82403978fd8d6405 (patch) | |
tree | 7adaf8ac303dc934ab8dcedb970192438af25f34 /test/iptables/nat.go | |
parent | fd84cddab0dc175d5050e2ac46f8520f632d1550 (diff) |
iptables: ready tests to be enabled in kokoro
Fixed flakes (tested via --runs_per_test=100) and added skips for
not-yet-implemented features. Once submitted, the iptables tests will be
ready to enable in kokoro.
Diffstat (limited to 'test/iptables/nat.go')
-rw-r--r-- | test/iptables/nat.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/iptables/nat.go b/test/iptables/nat.go index 899d1c9d3..6ca6b46ca 100644 --- a/test/iptables/nat.go +++ b/test/iptables/nat.go @@ -76,7 +76,7 @@ func (NATRedirectTCPPort) ContainerAction(ip net.IP) error { // LocalAction implements TestCase.LocalAction. func (NATRedirectTCPPort) LocalAction(ip net.IP) error { - return connectTCP(ip, dropPort, acceptPort, sendloopDuration) + return connectTCP(ip, dropPort, sendloopDuration) } // NATDropUDP tests that packets are not received in ports other than redirect port. |