summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-12-12 14:56:02 +0100
committerVictor Stinner <victor.stinner@gmail.com>2014-12-12 14:56:02 +0100
commitc0bd8112de5c30582665121a5ee1061210e49fd9 (patch)
tree7828b570722bff60536e88f909a42a2aab56dc56
parentbafc1a9877b367a7356d6349e951849148d1bbfd (diff)
downloadaioeventlet-c0bd8112de5c30582665121a5ee1061210e49fd9.tar.gz
Remove a test which behaves differently depending on the the version of asyncio/trollius
-rw-r--r--tests/test_callback.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/test_callback.py b/tests/test_callback.py
index fb29528..58f787b 100644
--- a/tests/test_callback.py
+++ b/tests/test_callback.py
@@ -32,16 +32,6 @@ class CallbackTests(tests.TestCase):
self.loop.run_forever()
self.assertEqual(result, ["Hello", "World"])
- def test_close_soon(self):
- def func():
- pass
-
- self.loop.close()
- # FIXME: calling call_soon() on a closed event loop should raise an
- # exception:
- # http://bugs.python.org/issue22922
- self.loop.call_soon(func)
-
if __name__ == '__main__':
import unittest