Commit 9278adbf authored by Denis Bilenko's avatar Denis Bilenko

test__pool.py: call base class' setUp and tearDown

parent 38110bf3
......@@ -185,12 +185,14 @@ TIMEOUT1, TIMEOUT2, TIMEOUT3 = 0.082, 0.035, 0.14
class TestPool(greentest.TestCase):
__timeout__ = 5
size = 1
def setUp(self):
greentest.TestCase.setUp(self)
self.pool = pool.Pool(self.size)
def tearDown(self):
def cleanup(self):
self.pool.join()
def test_apply(self):
......
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