bpo-23819: Get rid of assert statements in test_asyncio (GH-30212) (GH-30213)

To keep checks even if run tests with optimized Python.

Either use special assertion methods like assertEqual() or
raise an AssertionError explicitly.
(cherry picked from commit 6ca78affc8)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
This commit is contained in:
Miss Islington (bot) 2021-12-20 04:50:45 -08:00 committed by GitHub
parent 0c0bd78ccf
commit 95948169d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 102 additions and 63 deletions

View file

@ -329,7 +329,7 @@ class BaseTaskTests:
self.set_event_loop(loop)
fut = asyncio.ensure_future(Aw(coro()), loop=loop)
loop.run_until_complete(fut)
assert fut.result() == 'ok'
self.assertEqual(fut.result(), 'ok')
def test_ensure_future_neither(self):
with self.assertRaises(TypeError):
@ -1155,7 +1155,7 @@ class BaseTaskTests:
async def main():
result = await asyncio.wait_for(inner(), timeout=.01)
assert result == 1
self.assertEqual(result, 1)
asyncio.run(main())