Commit 054db673 authored by Denis Bilenko's avatar Denis Bilenko

test__greenlet.py: do not do kill(block=True) since blocking is default

parent f771082d
......@@ -65,7 +65,7 @@ class TestLink(greentest.TestCase):
p.link(receiver)
self.assertRaises(greenlet.LinkedCompleted, receiver.get)
finally:
receiver.kill(block=True)
receiver.kill()
def test_link_to_asyncresult(self):
p = gevent.spawn(lambda: 100)
......
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