From 17d1e8a38696a424e562de9d1747864838055b53 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Sat, 27 Feb 2021 23:05:40 -0500 Subject: [PATCH] tests: Don't generate support bundles when we get the results we want We are generating support bundles for tests being run that are passing. Tell the system... Signed-off-by: Donald Sharp --- .../topotests/evpn_type5_test_topo1/test_evpn_type5_topo1.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/topotests/evpn_type5_test_topo1/test_evpn_type5_topo1.py b/tests/topotests/evpn_type5_test_topo1/test_evpn_type5_topo1.py index 439738c725..036277411f 100644 --- a/tests/topotests/evpn_type5_test_topo1/test_evpn_type5_topo1.py +++ b/tests/topotests/evpn_type5_test_topo1/test_evpn_type5_topo1.py @@ -1312,14 +1312,14 @@ def test_evpn_routes_from_VNFs_p1(request): ) for addr_type in ADDR_TYPES: input_routes = {key: topo["routers"][key] for key in ["r1"]} - result = verify_rib(tgen, addr_type, "d2", input_routes, expected=False) + result = verify_rib(tgen, addr_type, "d2", input_routes, expected=True) assert result is True, "Testcase {} :Failed \n Error: {}".format( tc_name, result ) for addr_type in ADDR_TYPES: input_routes = {key: topo["routers"][key] for key in ["r2"]} - result = verify_rib(tgen, addr_type, "d2", input_routes, expected=False) + result = verify_rib(tgen, addr_type, "d2", input_routes, expected=True) assert result is True, "Testcase {} :Failed \n Error: {}".format( tc_name, result ) -- 2.39.5