fix: resolve mypy type errors in test file
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
2135849f27
commit
681e8187ca
1 changed files with 2 additions and 2 deletions
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue