From c7d88b2d105be3c9e7462f8ef20d326ea222d22f Mon Sep 17 00:00:00 2001 From: Ashish Pant Date: Tue, 3 Sep 2019 07:17:10 +0530 Subject: [PATCH] tests: Fix topojson address-family configuration Signed-off-by: Ashish Pant address-family configuration was commented out in earlier commit by mistake. Re-enabling it now. --- tests/topotests/lib/bgp.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/topotests/lib/bgp.py b/tests/topotests/lib/bgp.py index 0275b820cc..c47dddb8d4 100644 --- a/tests/topotests/lib/bgp.py +++ b/tests/topotests/lib/bgp.py @@ -470,9 +470,9 @@ def __create_bgp_unicast_address_family(topo, input_dict, router, addr_type, dest_link]["ipv6"].split("/")[0] neigh_cxt = "neighbor {}".format(ip_addr) - #config_data.append("address-family {} unicast".format( - # addr_type - #)) + config_data.append("address-family {} unicast".format( + addr_type + )) if deactivate: config_data.append( "no neighbor {} activate".format(deactivate))