diff --git a/tests/test_http_parser.py b/tests/test_http_parser.py index af2e8094706..d7f80c59a9f 100644 --- a/tests/test_http_parser.py +++ b/tests/test_http_parser.py @@ -826,9 +826,6 @@ async def test_parse_chunked_payload_size_error(self, stream) -> None: assert isinstance(out.exception(), http_exceptions.TransferEncodingError) - @pytest.mark.xfail( - reason="see https://github.com/aio-libs/aiohttp/issues/4630" - ) async def test_parse_chunked_payload_split_end(self, protocol) -> None: out = aiohttp.StreamReader(protocol, loop=None) p = HttpPayloadParser(out, chunked=True) @@ -838,9 +835,6 @@ async def test_parse_chunked_payload_split_end(self, protocol) -> None: assert out.is_eof() assert b'asdf' == b''.join(out._buffer) - @pytest.mark.xfail( - reason="see https://github.com/aio-libs/aiohttp/issues/4630" - ) async def test_parse_chunked_payload_split_end2(self, protocol) -> None: out = aiohttp.StreamReader(protocol, loop=None) p = HttpPayloadParser(out, chunked=True) @@ -861,9 +855,6 @@ async def test_parse_chunked_payload_split_end_trailers(self, assert out.is_eof() assert b'asdf' == b''.join(out._buffer) - @pytest.mark.xfail( - reason="see https://github.com/aio-libs/aiohttp/issues/4630" - ) async def test_parse_chunked_payload_split_end_trailers2(self, protocol) -> None: out = aiohttp.StreamReader(protocol, loop=None)