diff options
author | Ashish Pant <ashish12pant@gmail.com> | 2019-09-03 03:47:10 +0200 |
---|---|---|
committer | Ashish Pant <ashish12pant@gmail.com> | 2019-09-03 06:12:30 +0200 |
commit | c7d88b2d105be3c9e7462f8ef20d326ea222d22f (patch) | |
tree | 7862dfa67328836f1c320806b7044457440258f2 /tests | |
parent | tests: Fix topojson static route tests (diff) | |
download | frr-c7d88b2d105be3c9e7462f8ef20d326ea222d22f.tar.xz frr-c7d88b2d105be3c9e7462f8ef20d326ea222d22f.zip |
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.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/topotests/lib/bgp.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/topotests/lib/bgp.py b/tests/topotests/lib/bgp.py index 0275b820c..c47dddb8d 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)) |