summaryrefslogtreecommitdiff
path: root/test/e2e/run_staticip_test.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-02-02 16:41:26 -0500
committerGitHub <noreply@github.com>2022-02-02 16:41:26 -0500
commit89f71177aa4b00ee47245787ec5b5370a500d090 (patch)
tree2e04e1b684b7dbe3f36cbb1351afe6acd34def6a /test/e2e/run_staticip_test.go
parentb4c96535ead19e9f10d9b244c83d299cc3b1d42e (diff)
parent7d3ad6081f6598b8fa6385409e5109f11f29254f (diff)
downloadpodman-89f71177aa4b00ee47245787ec5b5370a500d090.tar.gz
podman-89f71177aa4b00ee47245787ec5b5370a500d090.tar.bz2
podman-89f71177aa4b00ee47245787ec5b5370a500d090.zip
Merge pull request #12859 from baude/netavarke2e
Enable e2e tests with netavark
Diffstat (limited to 'test/e2e/run_staticip_test.go')
-rw-r--r--test/e2e/run_staticip_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/run_staticip_test.go b/test/e2e/run_staticip_test.go
index cf014d46e..b78a37495 100644
--- a/test/e2e/run_staticip_test.go
+++ b/test/e2e/run_staticip_test.go
@@ -71,7 +71,7 @@ var _ = Describe("Podman run with --ip flag", func() {
ipv6 := "fd46:db93:aa76:ac37::10"
net := podmanTest.Podman([]string{"network", "create", "--subnet", "fd46:db93:aa76:ac37::/64", netName})
net.WaitWithDefaultTimeout()
- defer podmanTest.removeCNINetwork(netName)
+ defer podmanTest.removeNetwork(netName)
Expect(net).To(Exit(0))
result := podmanTest.Podman([]string{"run", "-ti", "--network", netName, "--ip6", ipv6, ALPINE, "ip", "addr"})