Skip to content

Commit

Permalink
feat(test): test AttributeDict response wrapping (#178)
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler committed Apr 22, 2024
1 parent 158cbe2 commit 00cd67f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_dank_mids.py
Original file line number Diff line number Diff line change
Expand Up @@ -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():
Expand Down

0 comments on commit 00cd67f

Please sign in to comment.