Teardown method prevents log spam with warnings (yay for those for catching this, though).

This commit is contained in:
Ryan Williams
2010-06-24 16:33:48 -07:00
parent 822f7430c4
commit 83c4f2c842

View File

@@ -932,6 +932,11 @@ class ProxiedIterableAlreadyHandledTest(IterableAlreadyHandledTest):
from eventlet import tpool
return tpool.Proxy(super(ProxiedIterableAlreadyHandledTest, self).get_app())
def tearDown(self):
from eventlet import tpool
tpool.killall()
super(ProxiedIterableAlreadyHandledTest, self).tearDown()
class TestChunkedInput(_TestBase):
dirt = ""
validator = None