diff --git a/tests/test_dank_mids.py b/tests/test_dank_mids.py index ae570c03..e79f6f2c 100644 --- a/tests/test_dank_mids.py +++ b/tests/test_dank_mids.py @@ -68,7 +68,9 @@ async def test_other_methods(): work = [dank_web3.eth.block_number for i in range(50)] work.append(dank_web3.eth.get_block('0xe25822')) work.append(dank_web3.manager.coro_request(RPC.web3_clientVersion, [])) - assert await asyncio.gather(*work) + results = await asyncio.gather(*work) + assert results + assert results[-2].timestamp @pytest.mark.asyncio_cooperative async def test_AttributeDict():