()
| 101 | @pytest.mark.asyncio |
| 102 | @pytest.mark.flaky(reruns=3, reruns_delay=2) |
| 103 | async def test_get_bytes(): |
| 104 | url = "https://httpbin.org/image/png" |
| 105 | response = await client.get(url) |
| 106 | bytes = await response.bytes() |
| 107 | assert bytes is not None |
| 108 | |
| 109 | |
| 110 | @pytest.mark.asyncio |