tests: Fix topojson address-family configuration

Signed-off-by: Ashish Pant <ashish12pant@gmail.com>

address-family configuration was commented out in earlier commit
by mistake. Re-enabling it now.
This commit is contained in:
Ashish Pant 2019-09-03 07:17:10 +05:30
parent 243daff303
commit c7d88b2d10

View File

@ -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))