This repository was archived by the owner on Mar 26, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -79,7 +79,8 @@ def test_stream_stream_passing_dict(echo):
7979
8080@pytest .mark .asyncio
8181async def test_async_unary_stream_reader (async_echo ):
82- logging .debug ('test_async_unary_stream_reader %s %s' , threading .current_thread (), asyncio .get_event_loop ())
82+ logging .debug ('test_async_unary_stream_reader %s %s' ,
83+ threading .current_thread (), asyncio .get_event_loop ())
8384 content = 'The hail in Wales falls mainly on the snails.'
8485 call = await async_echo .expand ({
8586 'content' : content ,
@@ -135,6 +136,7 @@ async def test_async_stream_unary_iterable(async_echo):
135136@pytest .mark .asyncio
136137async def test_async_stream_unary_async_generator (async_echo ):
137138 logging .debug ('test_async_stream_unary_async_generator' )
139+
138140 async def async_generator ():
139141 yield showcase .EchoRequest (content = "hello" )
140142 yield showcase .EchoRequest (content = "world!" )
@@ -186,6 +188,7 @@ async def test_async_stream_stream_reader_writier(async_echo):
186188@pytest .mark .asyncio
187189async def test_async_stream_stream_async_generator (async_echo ):
188190 logging .debug ('test_async_stream_stream_async_generator' )
191+
189192 async def async_generator ():
190193 yield showcase .EchoRequest (content = "hello" )
191194 yield showcase .EchoRequest (content = "world!" )
You can’t perform that action at this time.
0 commit comments