()
| 17 | @pytest.mark.asyncio |
| 18 | @pytest.mark.flaky(reruns=3, reruns_delay=2) |
| 19 | async def test_deflate(): |
| 20 | url = "https://httpbin.org/deflate" |
| 21 | response = await client.get(url) |
| 22 | text = await response.text() |
| 23 | assert text is not None |
| 24 | assert "deflated" in text |
| 25 | |
| 26 | |
| 27 | @pytest.mark.asyncio |