Skip to content

Commit 8194bce

Browse files
committed
increse timeout
1 parent 0582bf5 commit 8194bce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/shared/test_sse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ async def http_client(server, server_url) -> AsyncGenerator[httpx.AsyncClient, N
161161
@pytest.mark.anyio
162162
async def test_raw_sse_connection(http_client: httpx.AsyncClient) -> None:
163163
"""Test the SSE connection establishment simply with an HTTP client."""
164-
with anyio.fail_after(3):
164+
with anyio.fail_after(10):
165165
async with http_client.stream("GET", "/sse") as response:
166166
assert response.status_code == 200
167167
assert (

0 commit comments

Comments
 (0)