summaryrefslogtreecommitdiff
path: root/tests/api_test.py
diff options
context:
space:
mode:
authorRyan Williams <rdw@lindenlab.com>2009-12-16 00:01:12 -0800
committerRyan Williams <rdw@lindenlab.com>2009-12-16 00:01:12 -0800
commitba34bb7a65a0afc392e1dbd96a8d31f490f496d9 (patch)
tree9a5687916b9be8278454a40baa2e8ea38fdf9d58 /tests/api_test.py
parented958aed54bfbf2ad8031bbc208d31bcb99f4cd5 (diff)
downloadeventlet-ba34bb7a65a0afc392e1dbd96a8d31f490f496d9.tar.gz
Renamed coros.event to coros.Event to be compatible with PEP-8 some more.
Diffstat (limited to 'tests/api_test.py')
-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 87dbf8c..1ca9306 100644
--- a/tests/api_test.py
+++ b/tests/api_test.py
@@ -181,7 +181,7 @@ class TestApi(TestCase):
evt.send('sent via event')
from eventlet import coros
- evt = coros.event()
+ evt = coros.Event()
api.spawn(sender, evt)
api.sleep(0) # lets the socket enter accept mode, which
# is necessary for connect to succeed on windows