Skip to content

Commit 353a730

Browse files
committed
Fix pyright error
1 parent e6fbdbf commit 353a730

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/python/tests/client/test_lambda_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ async def test_lambda_function_notification_success(mock_client_creator, mock_se
113113
async with read_stream:
114114
with pytest.raises(anyio.WouldBlock):
115115
time.sleep(1)
116-
await read_stream.receive_nowait()
116+
read_stream.receive_nowait()
117117

118118
# Verify Lambda was invoked with correct parameters
119119
mock_client.invoke.assert_called_once()

0 commit comments

Comments
 (0)