Skip to content

Commit

Permalink
Remove xfail decorators (aio-libs#4630)
Browse files Browse the repository at this point in the history
  • Loading branch information
rhdxmr committed Jun 10, 2020
1 parent 693f2ce commit 3a5788b
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions tests/test_http_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand All @@ -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)
Expand Down

0 comments on commit 3a5788b

Please sign in to comment.