aboutsummaryrefslogtreecommitdiff
path: root/libcontextsubscriber/customer-tests/asynchronicity/asynchronicity.py
diff options
context:
space:
mode:
Diffstat (limited to 'libcontextsubscriber/customer-tests/asynchronicity/asynchronicity.py')
-rwxr-xr-xlibcontextsubscriber/customer-tests/asynchronicity/asynchronicity.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/libcontextsubscriber/customer-tests/asynchronicity/asynchronicity.py b/libcontextsubscriber/customer-tests/asynchronicity/asynchronicity.py
index 7eccd1ba..2566ba6f 100755
--- a/libcontextsubscriber/customer-tests/asynchronicity/asynchronicity.py
+++ b/libcontextsubscriber/customer-tests/asynchronicity/asynchronicity.py
@@ -93,9 +93,9 @@ class Asynchronous(unittest.TestCase):
"The arrival time of the fast and slow property is not far enough from each other")
# context_client.printio()
- context_client.close()
- provider_slow.close()
- provider_fast.close()
+ context_client.wait()
+ provider_fast.wait()
+ provider_slow.wait()
def runTests():
suiteInstallation = unittest.TestLoader().loadTestsFromTestCase(Asynchronous)