@@ -156,7 +156,7 @@ async def hello(request):
156
156
data = await resp .json ()
157
157
assert "bob" == data .get ("name" )
158
158
159
- @pytest .mark .skip ("TODO - 2025-01-10 - aiohttp is missing so hapic features like async decorators ... see #76 " )
159
+ @pytest .mark .skip ("TODO - 2025-01-10 - aiohttp is missing so hapic features like async decorators ... see #221 " )
160
160
async def test_aiohttp_output_body__error__incorrect_output_body (self , aiohttp_client , loop ):
161
161
hapic = Hapic (async_ = True , processor_class = MarshmallowProcessor )
162
162
@@ -457,7 +457,7 @@ async def update_avatar(request: Request, hapic_data: HapicData):
457
457
resp = await client .put ("/avatar" , data = {"avatar" : io .StringIO ("text content of file" )})
458
458
assert resp .status == 200
459
459
460
- @pytest .mark .skip ("TODO - 2025-01-10 - aiohttp is missing so hapic features like async decorators ... see #76 " )
460
+ @pytest .mark .skip ("TODO - 2025-01-10 - aiohttp is missing so hapic features like async decorators ... see #221 " )
461
461
async def test_unit__post_file__ok__missing_file (self , aiohttp_client , loop ):
462
462
hapic = Hapic (async_ = True , processor_class = MarshmallowProcessor )
463
463
@@ -485,7 +485,7 @@ async def update_avatar(request: Request, hapic_data: HapicData):
485
485
"code" : None ,
486
486
} == json_
487
487
488
- @pytest .mark .skip ("TODO - 2025-01-10 - aiohttp is missing so hapic features like async decorators ... see #76 " )
488
+ @pytest .mark .skip ("TODO - 2025-01-10 - aiohttp is missing so hapic features like async decorators ... see #221 " )
489
489
async def test_request_header__ok__lowercase_key (self , aiohttp_client ):
490
490
hapic = Hapic (MarshmallowProcessor , True )
491
491
0 commit comments