fix: resolve mypy type errors in test file

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
claude[bot] 2026-04-03 19:21:57 +00:00
parent 2135849f27
commit 681e8187ca

View file

@ -15,7 +15,7 @@ class TestLLMClientClose:
"""Test LLMClient handles close() failures gracefully"""
@pytest.mark.asyncio
async def test_close_handles_transport_errors(self):
async def test_close_handles_transport_errors(self) -> None:
"""
Test that client close() errors are caught and don't propagate.
@ -70,7 +70,7 @@ class TestLLMClientClose:
raise
@pytest.mark.asyncio
async def test_close_handles_event_loop_closed_error(self):
async def test_close_handles_event_loop_closed_error(self) -> None:
"""
Test that event loop closed errors during close() are handled.