Commit efb3f3eb authored by Denis Bilenko's avatar Denis Bilenko

test__greenlet.py: fix test case not to leak greenlets

--HG--
extra : transplant_source : %E2%1B%1D%C1f%21b%1B%9F%1D6%CB%95%EE%14%AF%3C%CD%84z
parent 33054052
......@@ -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