Commit 9fc098c6 authored by Denis Bilenko's avatar Denis Bilenko

test__pool.py: call base class' setUp and tearDown

--HG--
extra : transplant_source : %EA%F3%98n%11i%F9Fa%3C%93%E5%B8T%FE%03%26%A6%D8U
parent 8f4b236c
......@@ -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