mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-06-27 08:21:36 +00:00
Merge pull request #9104 from idryzhov/topotest-multiline
tests: fix invalid multiline format
This commit is contained in:
commit
68b47b29d8
@ -1135,9 +1135,9 @@ def test_bgp_with_loopback_with_same_subnet_p1(request):
|
|||||||
protocol = "bgp"
|
protocol = "bgp"
|
||||||
for addr_type in ADDR_TYPES:
|
for addr_type in ADDR_TYPES:
|
||||||
result = verify_fib_routes(tgen, addr_type, dut, input_dict_r1)
|
result = verify_fib_routes(tgen, addr_type, dut, input_dict_r1)
|
||||||
assert result is not True, "Testcase {} : Failed \n".format(tc_name)
|
assert result is not True, "Testcase {} : Failed \n"
|
||||||
"Expected behavior: routes should not present in fib \n"
|
"Expected behavior: routes should not present in fib \n"
|
||||||
"Error: {}".format(result)
|
"Error: {}".format(tc_name, result)
|
||||||
|
|
||||||
step("Verify Ipv4 and Ipv6 network installed in r3 RIB but not in FIB")
|
step("Verify Ipv4 and Ipv6 network installed in r3 RIB but not in FIB")
|
||||||
input_dict_r3 = {
|
input_dict_r3 = {
|
||||||
@ -1152,9 +1152,9 @@ def test_bgp_with_loopback_with_same_subnet_p1(request):
|
|||||||
protocol = "bgp"
|
protocol = "bgp"
|
||||||
for addr_type in ADDR_TYPES:
|
for addr_type in ADDR_TYPES:
|
||||||
result = verify_fib_routes(tgen, addr_type, dut, input_dict_r1)
|
result = verify_fib_routes(tgen, addr_type, dut, input_dict_r1)
|
||||||
assert result is not True, "Testcase {} : Failed \n".format(tc_name)
|
assert result is not True, "Testcase {} : Failed \n"
|
||||||
"Expected behavior: routes should not present in fib \n"
|
"Expected behavior: routes should not present in fib \n"
|
||||||
"Error: {}".format(result)
|
"Error: {}".format(tc_name, result)
|
||||||
|
|
||||||
write_test_footer(tc_name)
|
write_test_footer(tc_name)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user