Skip to content

[PR #10880/3c9d7abf backport][3.12] Add invalid content type test docs #10886

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix import
  • Loading branch information
bdraco committed May 19, 2025
commit 52ee834b52b340e9c931be8f1cbfdb0fb3f9338f
2 changes: 1 addition & 1 deletion tests/test_web_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -1165,7 +1165,7 @@ def test_ctor_content_type_with_extra() -> None:


def test_invalid_content_type_parses_to_text_plain() -> None:
resp = web.Response(text="test test", content_type="jpeg")
resp = Response(text="test test", content_type="jpeg")

assert resp.content_type == "text/plain"
assert resp.headers["content-type"] == "jpeg; charset=utf-8"
Expand Down
Loading