diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2021-08-29 14:04:40 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-29 14:04:40 +0300 |
commit | 2a8127cafe1d196f858a3ecabf5f1df3eebf9a12 (patch) | |
tree | ddf073f1752e1dd20aba534964da961aeecf8c95 /Lib/test/test_asyncio/test_tasks.py | |
parent | 07d3d54f4e84b1259b800884b202701f69e408d8 (diff) | |
download | cpython-2a8127cafe1d196f858a3ecabf5f1df3eebf9a12.tar.gz cpython-2a8127cafe1d196f858a3ecabf5f1df3eebf9a12.zip |
bpo-25130: Add calls of gc.collect() in tests to support PyPy (GH-28005)
Diffstat (limited to 'Lib/test/test_asyncio/test_tasks.py')
-rw-r--r-- | Lib/test/test_asyncio/test_tasks.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_asyncio/test_tasks.py b/Lib/test/test_asyncio/test_tasks.py index de003737f90..92b1a435003 100644 --- a/Lib/test/test_asyncio/test_tasks.py +++ b/Lib/test/test_asyncio/test_tasks.py @@ -2307,6 +2307,7 @@ class BaseTaskTests: self.new_task(self.loop, gen) finally: gen.close() + gc.collect() # For PyPy or other GCs. self.assertTrue(m_log.error.called) message = m_log.error.call_args[0][0] |