Commit ffc5c681 authored by Denis Bilenko's avatar Denis Bilenko

test__greenlet.py: rename to test_wait_all_exception_order to test_joinall_exception_order

parent 5156101b
...@@ -382,7 +382,7 @@ class TestStuff(greentest.TestCase): ...@@ -382,7 +382,7 @@ class TestStuff(greentest.TestCase):
self.assertEqual(z.get(), 3) self.assertEqual(z.get(), 3)
self.assertRaises(ExpectedError, gevent.joinall, [y], raise_error=True) self.assertRaises(ExpectedError, gevent.joinall, [y], raise_error=True)
def test_wait_all_exception_order(self): def test_joinall_exception_order(self):
# if there're several exceptions raised, the earliest one must be raised by joinall # if there're several exceptions raised, the earliest one must be raised by joinall
def first(): def first():
sleep(0.1) sleep(0.1)
......
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