summaryrefslogtreecommitdiffstats
path: root/tests/topotests/bgp_aspath_zero/test_bgp_aspath_zero.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/topotests/bgp_aspath_zero/test_bgp_aspath_zero.py')
-rw-r--r--tests/topotests/bgp_aspath_zero/test_bgp_aspath_zero.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/topotests/bgp_aspath_zero/test_bgp_aspath_zero.py b/tests/topotests/bgp_aspath_zero/test_bgp_aspath_zero.py
index 0f1a0830..fe89a876 100644
--- a/tests/topotests/bgp_aspath_zero/test_bgp_aspath_zero.py
+++ b/tests/topotests/bgp_aspath_zero/test_bgp_aspath_zero.py
@@ -73,7 +73,7 @@ def test_bgp_aggregator_zero():
return topotest.json_cmp(output, expected)
test_func = functools.partial(_bgp_converge)
- success, result = topotest.run_and_expect(test_func, None, count=60, wait=0.5)
+ _, result = topotest.run_and_expect(test_func, None, count=60, wait=0.5)
assert result is None, "More than one prefix seen at r1, SHOULD be only one."
def _bgp_has_correct_routes_without_asn_0():
@@ -82,7 +82,7 @@ def test_bgp_aggregator_zero():
return topotest.json_cmp(output, expected)
test_func = functools.partial(_bgp_has_correct_routes_without_asn_0)
- success, result = topotest.run_and_expect(test_func, None, count=60, wait=0.5)
+ _, result = topotest.run_and_expect(test_func, None, count=60, wait=0.5)
assert result is None, "Failed listing 192.168.100.101/32, SHOULD be accepted."