diff options
Diffstat (limited to 'tests/topotests/lib/checkping.py')
-rw-r--r-- | tests/topotests/lib/checkping.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/topotests/lib/checkping.py b/tests/topotests/lib/checkping.py index 5500807f..aa95f45b 100644 --- a/tests/topotests/lib/checkping.py +++ b/tests/topotests/lib/checkping.py @@ -33,5 +33,5 @@ def check_ping(name, dest_addr, expect_connected, count, wait, source_addr=None) logger.info("[+] check {} {} {}".format(name, dest_addr, match)) tgen = get_topogen() func = functools.partial(_check, name, dest_addr, source_addr, match) - success, result = topotest.run_and_expect(func, None, count=count, wait=wait) + _, result = topotest.run_and_expect(func, None, count=count, wait=wait) assert result is None, "Failed" |