From: Donald Sharp Date: Sun, 28 Feb 2021 04:05:40 +0000 (-0500) Subject: tests: Don't generate support bundles when we get the results we want X-Git-Tag: base_8.0~325^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=refs%2Fpull%2F8168%2Fhead;p=mirror%2Ffrr.git 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 --- 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 )