diff options
author | Donald Sharp <sharpd@nvidia.com> | 2021-04-09 14:53:44 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@nvidia.com> | 2021-04-15 13:17:10 +0200 |
commit | f4baa8fe2531aa14b83b2dfc5e87d4a4d305f090 (patch) | |
tree | a32cf1e13e45cf0ceb57cbed8aa880b914383178 /tests | |
parent | tests: Remove duplicate functions in python code (diff) | |
download | frr-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.py | 4 |
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) |