Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/test_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ async def fibo(iters):
@asyncio_run
async def test_query_async_timeout(self):
with pytest.raises(FlightTimedOutError):
with ConstantFlightServer() as server:
with ConstantFlightServerDelayed() as server:
connection_string = f"grpc://localhost:{server.port}"
token = "my_token"
database = "my_database"
Expand All @@ -452,7 +452,7 @@ async def test_query_async_timeout(self):

def test_query_timeout_per_call_override(self):
with pytest.raises(FlightTimedOutError):
with ConstantFlightServer() as server:
with ConstantFlightServerDelayed() as server:
connection_string = f"grpc://localhost:{server.port}"
token = "my_token"
database = "my_database"
Expand Down
Loading