From ed7b055ab0656396b7735293108e648c31c86828 Mon Sep 17 00:00:00 2001 From: Brad House Date: Fri, 24 Jan 2025 08:37:44 -0500 Subject: [PATCH] try to fix test case failures --- tests/test_evpn_tunnel.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/test_evpn_tunnel.py b/tests/test_evpn_tunnel.py index 86f5ad53f6..1de4b8196b 100644 --- a/tests/test_evpn_tunnel.py +++ b/tests/test_evpn_tunnel.py @@ -141,7 +141,7 @@ def test_p2mp_tunnel_with_dip(self, dvs, testlog): vxlan_obj.create_vlan1(dvs,"Vlan100") vxlan_obj.create_vlan1(dvs,"Vlan101") vxlan_obj.create_vlan1(dvs,"Vlan102") - vxlan_obj.create_vxlan_tunnel(dvs, tunnel_name, '6.6.6.6', '2.2.2.2', False) + vxlan_obj.create_vxlan_tunnel(dvs, tunnel_name, '6.6.6.6') vxlan_obj.create_vxlan_tunnel_map(dvs, tunnel_name, map_name, '1000', 'Vlan100') vxlan_obj.create_vxlan_tunnel_map(dvs, tunnel_name, map_name_1, '1001', 'Vlan101') vxlan_obj.create_vxlan_tunnel_map(dvs, tunnel_name, map_name_2, '1002', 'Vlan102') @@ -149,7 +149,10 @@ def test_p2mp_tunnel_with_dip(self, dvs, testlog): vlanlist = ['100', '101', '102'] vnilist = ['1000', '1001', '1002'] - print("Testing SIP Tunnel Creation") + vxlan_obj.create_evpn_nvo(dvs, 'nvo1', tunnel_name) + vxlan_obj.create_evpn_remote_vni(dvs, 'Vlan100', '2.2.2.2', '1000') + + print("Testing P2MP Tunnel Creation with DIP") vxlan_obj.check_vxlan_sip_tunnel(dvs, tunnel_name, '6.6.6.6', vlanlist, vnilist, '2.2.2.2', False) print("Testing Tunnel Map Entry")