summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Stasiak <jakub@stasiak.at>2015-02-08 16:29:18 +0100
committerJakub Stasiak <jakub@stasiak.at>2015-02-09 23:16:30 +0100
commit71e272b5282401c86788d666457230ccdd6de918 (patch)
treeb7a4e23a307e8bd8c918d6cc4f005fbb36b25c47
parent82d8020b81cd6ff8c54412190f479c0a774e7bcb (diff)
downloadeventlet-71e272b5282401c86788d666457230ccdd6de918.tar.gz
Use keyword argument here to make it easier to read
-rw-r--r--tests/api_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/api_test.py b/tests/api_test.py
index f9636da..1cdab88 100644
--- a/tests/api_test.py
+++ b/tests/api_test.py
@@ -17,7 +17,7 @@ def check_hub():
for nm in 'get_readers', 'get_writers':
dct = getattr(hub, nm)()
assert not dct, "hub.%s not empty: %s" % (nm, dct)
- hub.abort(True)
+ hub.abort(wait=True)
assert not hub.running