summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-07-29 12:51:05 +0200
committerVictor Stinner <victor.stinner@gmail.com>2014-07-29 12:51:05 +0200
commit3ed8be38d2b9936a0c2c8474fe1d217e02918ae8 (patch)
tree9a6d264e42b22954e8a9757d0929d56c2a4cdf6c
parentcd16e51329b3c20084f81c183d220a311ceb0f24 (diff)
downloadtrollius-3ed8be38d2b9936a0c2c8474fe1d217e02918ae8.tar.gz
Remove workaround in test_futures, no more needed
-rw-r--r--tests/test_futures.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/test_futures.py b/tests/test_futures.py
index 3029a9c..e5002bc 100644
--- a/tests/test_futures.py
+++ b/tests/test_futures.py
@@ -308,12 +308,6 @@ class FutureTests(test_utils.TestCase):
@mock.patch('asyncio.base_events.logger')
def test_future_exception_never_retrieved(self, m_log):
- # FIXME: Python issue #21163, other tests may "leak" pending task which
- # emit a warning when they are destroyed by the GC
- support.gc_collect()
- m_log.error.reset_mock()
- # ---
-
self.loop.set_debug(True)
def memory_error():