File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -943,7 +943,7 @@ def test_LimitOverrunError_pickleable(self):
943
943
944
944
class NewStreamTests2 (unittest .IsolatedAsyncioTestCase ):
945
945
async def test_wait_closed_on_close (self ):
946
- async with test_utils .run_test_server () as httpd :
946
+ with test_utils .run_test_server () as httpd :
947
947
rd , wr = self .loop .run_until_complete (
948
948
asyncio .open_connection (* httpd .address ))
949
949
@@ -1002,7 +1002,7 @@ async def inner(httpd):
1002
1002
1003
1003
async def test_eof_feed_when_closing_writer (self ):
1004
1004
# See http://bugs.python.org/issue35065
1005
- async with test_utils .run_test_server () as httpd :
1005
+ with test_utils .run_test_server () as httpd :
1006
1006
rd , wr = await asyncio .open_connection (* httpd .address )
1007
1007
wr .close ()
1008
1008
f = wr .wait_closed ()
You can’t perform that action at this time.
0 commit comments