summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAshish Pant <ashish12pant@gmail.com>2019-09-03 03:47:10 +0200
committerAshish Pant <ashish12pant@gmail.com>2019-09-03 06:12:30 +0200
commitc7d88b2d105be3c9e7462f8ef20d326ea222d22f (patch)
tree7862dfa67328836f1c320806b7044457440258f2 /tests
parenttests: Fix topojson static route tests (diff)
downloadfrr-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.py6
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))