Commit 43a965d8 authored by Denis Bilenko's avatar Denis Bilenko

test__api.py: do not pass block=True to kill() since it is the default behavior

parent af40d5cc
......@@ -44,7 +44,7 @@ class Test(greentest.TestCase):
g = gevent.spawn(test)
gevent.sleep(DELAY / 2)
assert state == ['start'], state
g.kill(block=True)
g.kill()
# will not get there, unless switching is explicitly scheduled by kill
assert state == ['start', 'except', 'finished'], state
......
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