Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
Signed-off-by: Andrea Panattoni <[email protected]>
  • Loading branch information
zeeke committed Nov 25, 2024
1 parent 849530c commit f8f8a59
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/conformance/tests/test_policy_configuration.go
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ var _ = Describe("[sriov] operator", Ordered, func() {
},
Spec: sriovv1.SriovNetworkSpec{
ResourceName: resourceName,
IPAM: `{"type":"host-local","subnet":"10.10.10.0/24","rangeStart":"10.10.10.171","rangeEnd":"10.10.10.181","routes":[{"dst":"0.0.0.0/0"}],"gateway":"10.10.10.1"}`,
IPAM: `{"type":"host-local","subnet":"10.10.10.0/24","rangeStart":"10.10.10.171","rangeEnd":"10.10.10.181","routes":[{"dst":"10.10.10.0/24"}],"gateway":"10.10.10.1"}`,
NetworkNamespace: namespaces.Test,
}}

Expand Down Expand Up @@ -672,7 +672,6 @@ var _ = Describe("[sriov] operator", Ordered, func() {
stdout, _, _ = pod.ExecCommand(clients, secondPod, []string{"ip", "address"}...)
fmt.Println(stdout)


pingCommand := []string{"ping", firstPodIPs[0], "-s", "8972", "-M", "do", "-c", "2"}
stdout, stderr, err = pod.ExecCommand(clients, secondPod, pingCommand...)
Expect(err).ToNot(HaveOccurred(), "Failed to ping first pod. cmd%v stdout[%s] stderr[%s]", pingCommand, stdout, stderr)
Expand Down

0 comments on commit f8f8a59

Please sign in to comment.