Commit dedc3ed0 authored by Denis Bilenko's avatar Denis Bilenko

test__pool.py: rename test_execute() -> test_apply()

parent b5d0be75
......@@ -143,7 +143,7 @@ class PoolBasicTests(greentest.TestCase):
gevent.sleep(0.01)
self.assertEqual(sorted(r), [1, 2, 3, 4])
def test_execute(self):
def test_apply(self):
p = self.klass()
result = p.apply(lambda a: ('foo', a), (1, ))
self.assertEqual(result, ('foo', 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