Commit 29261f08 authored by Denis Bilenko's avatar Denis Bilenko

test__greenlet.py: fix test case not to leak greenlets

parent ffc5c681
......@@ -393,6 +393,7 @@ class TestStuff(greentest.TestCase):
gevent.joinall([a, b], raise_error=True)
except ExpectedError, ex:
assert 'second' in str(ex), repr(str(ex))
gevent.joinall([a, b])
def test_multiple_listeners_error(self):
# if there was an error while calling a callback
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment