From f4baa8fe2531aa14b83b2dfc5e87d4a4d305f090 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Fri, 9 Apr 2021 08:53:44 -0400 Subject: [PATCH] tests: Remove unnecessary formating for strings Signed-off-by: Donald Sharp --- tests/topotests/bgp_ipv6_rtadv/test_bgp_ipv6_rtadv.py | 4 ++-- 1 file 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 cd845be296..0df2c9cb5a 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) -- 2.39.5