summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@nvidia.com>2021-04-09 14:53:44 +0200
committerDonald Sharp <sharpd@nvidia.com>2021-04-15 13:17:10 +0200
commitf4baa8fe2531aa14b83b2dfc5e87d4a4d305f090 (patch)
treea32cf1e13e45cf0ceb57cbed8aa880b914383178 /tests
parenttests: Remove duplicate functions in python code (diff)
downloadfrr-f4baa8fe2531aa14b83b2dfc5e87d4a4d305f090.tar.xz
frr-f4baa8fe2531aa14b83b2dfc5e87d4a4d305f090.zip
tests: Remove unnecessary formating for strings
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/topotests/bgp_ipv6_rtadv/test_bgp_ipv6_rtadv.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/topotests/bgp_ipv6_rtadv/test_bgp_ipv6_rtadv.py b/tests/topotests/bgp_ipv6_rtadv/test_bgp_ipv6_rtadv.py
index cd845be29..0df2c9cb5 100644
--- a/tests/topotests/bgp_ipv6_rtadv/test_bgp_ipv6_rtadv.py
+++ b/tests/topotests/bgp_ipv6_rtadv/test_bgp_ipv6_rtadv.py
@@ -112,7 +112,7 @@ def test_protocols_convergence():
test_func = partial(
topotest.router_json_cmp,
router,
- "show ip route json".format(router.name),
+ "show ip route json",
expected,
)
_, result = topotest.run_and_expect(test_func, None, count=160, wait=0.5)
@@ -131,7 +131,7 @@ def test_protocols_convergence():
test_func = partial(
topotest.router_json_cmp,
router,
- "show ipv6 route json".format(router.name),
+ "show ipv6 route json",
expected,
)
_, result = topotest.run_and_expect(test_func, None, count=160, wait=0.5)