aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_ip_ecmp.py
diff options
context:
space:
mode:
authorOle Troan <ot@cisco.com>2019-03-11 19:23:25 +0100
committerPaul Vinciguerra <pvinci@vinciconsulting.com>2019-03-11 21:57:19 +0000
commita5b2eec0535f9025319a752891d77ff9948ae0df (patch)
tree08c801cb85ab9639e00e5f565e613b817b3924e4 /test/test_ip_ecmp.py
parent2d9b427a5b20dcec3d2212a3a8a47c29b4acdd46 (diff)
vpp_papi_provider: Remove more wrapper functions.
Split this work up into pieces. Please don't add new wrappers to vpp_papi_provider.py. Change-Id: I0f8f2afc4cd2bba07ea70ddecea2d7319f7b2e10 Signed-off-by: Ole Troan <ot@cisco.com>
Diffstat (limited to 'test/test_ip_ecmp.py')
-rw-r--r--test/test_ip_ecmp.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/test_ip_ecmp.py b/test/test_ip_ecmp.py
index 5abaea41e46..c6a33c815b8 100644
--- a/test/test_ip_ecmp.py
+++ b/test/test_ip_ecmp.py
@@ -5,7 +5,6 @@ import random
import socket
from ipaddress import IPv4Address, IPv6Address, AddressValueError
-
from framework import VppTestCase, VppTestRunner
from util import ppp
@@ -187,7 +186,9 @@ class TestECMP(VppTestCase):
next_hop_address = socket.inet_pton(af, nh_host_ip)
next_hop_sw_if_index = pg_if.sw_if_index
self.vapi.ip_add_del_route(
- dst_ip, dst_prefix_len, next_hop_address,
+ dst_address=dst_ip,
+ dst_address_length=dst_prefix_len,
+ next_hop_address=next_hop_address,
next_hop_sw_if_index=next_hop_sw_if_index,
is_ipv6=is_ipv6, is_multipath=1)
self.logger.info("Route via %s on %s created" %