()
| 27 | @pytest.mark.asyncio |
| 28 | @pytest.mark.flaky(reruns=3, reruns_delay=2) |
| 29 | async def test_brotli(): |
| 30 | url = "https://httpbin.org/brotli" |
| 31 | response = await client.get(url) |
| 32 | text = await response.text() |
| 33 | assert text is not None |
| 34 | assert "brotli" in text |