Skip to content

Commit a0c3e14

Browse files
committed
Added no cover to http receive() method, unsure how to test that
1 parent 35c40b4 commit a0c3e14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mangum/protocols/http.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ async def receive(self) -> Message:
9595
"""
9696
Awaited by the application to receive ASGI `http` events.
9797
"""
98-
return await self.app_queue.get()
98+
return await self.app_queue.get() # pragma: no cover
9999

100100
async def send(self, message: Message) -> None:
101101
"""

0 commit comments

Comments
 (0)