Commit d5ca6a79 authored by Denis Bilenko's avatar Denis Bilenko

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

--HG--
extra : transplant_source : %2A%CD%F2%A4%EA%EFn%D7%7C%E5%AD%8B%D7%7E%E0%D5%F2%B8y%08
parent a5f0fbdd
......@@ -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