diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-05-25 11:38:57 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-25 11:38:57 -0400 |
commit | e26ad5066981a50053c5a9e157c6e5ce6c1c609b (patch) | |
tree | cd53a87cc42e0b4c74311f9c8446ea0194472127 /test/e2e | |
parent | dbd4ee04b8dca865e6001d94565755fae60089c9 (diff) | |
parent | cb76d152307179ed2614115d2c4a447b201c5c9e (diff) | |
download | podman-e26ad5066981a50053c5a9e157c6e5ce6c1c609b.tar.gz podman-e26ad5066981a50053c5a9e157c6e5ce6c1c609b.tar.bz2 podman-e26ad5066981a50053c5a9e157c6e5ce6c1c609b.zip |
Merge pull request #14361 from Luap99/netflake
fix f35 integration test network flake
Diffstat (limited to 'test/e2e')
-rw-r--r-- | test/e2e/run_networking_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/run_networking_test.go b/test/e2e/run_networking_test.go index 3b32b4b82..4081ec45b 100644 --- a/test/e2e/run_networking_test.go +++ b/test/e2e/run_networking_test.go @@ -381,7 +381,7 @@ EXPOSE 2004-2005/tcp`, ALPINE) session := podmanTest.Podman([]string{"run", "-dt", "-p", fmt.Sprintf("%d:%d", port1, port2), ALPINE, "/bin/sh"}) session.WaitWithDefaultTimeout() Expect(session).Should(Exit(0)) - results := SystemExec("iptables", []string{"-t", "nat", "-L"}) + results := SystemExec("iptables", []string{"-t", "nat", "-nvL"}) Expect(results).Should(Exit(0)) Expect(results.OutputToString()).To(ContainSubstring(fmt.Sprintf("%d", port2))) |