From d2a3809ca82226fe6d6808ddebb390f2b5ea3cae Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Wed, 25 Aug 2021 15:17:25 -0700 Subject: [PATCH] auto-t: testutil.py: update Process changes --- autotests/util/testutil.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autotests/util/testutil.py b/autotests/util/testutil.py index ea705bad..1fced6c4 100644 --- a/autotests/util/testutil.py +++ b/autotests/util/testutil.py @@ -169,7 +169,7 @@ def test_ip_connected(tup0, tup1): ip1, ns1 = tup1 try: - ns0.start_process(['ping', '-c', '5', '-i', '0.2', ip1], wait=True, check=True) - ns1.start_process(['ping', '-c', '5', '-i', '0.2', ip0], wait=True, check=True) + ns0.start_process(['ping', '-c', '5', '-i', '0.2', ip1], check=True) + ns1.start_process(['ping', '-c', '5', '-i', '0.2', ip0], check=True) except: raise Exception('Could not ping between %s and %s' % (ip0, ip1))