summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2023-04-11 07:40:15 -0700
committerDavid Lord <davidism@gmail.com>2023-04-11 07:40:40 -0700
commita6d96ca1dc78ebd6702bbb11c97987682c9f702d (patch)
tree9ffc94cba6ba753b8019aba0a5d3d601fe985857 /tests
parentff3df42fed1041d72bc57eb15500d19bcdb170a2 (diff)
downloadwerkzeug-a6d96ca1dc78ebd6702bbb11c97987682c9f702d.tar.gz
deprecate request and response charset
Diffstat (limited to 'tests')
-rw-r--r--tests/test_wrappers.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/test_wrappers.py b/tests/test_wrappers.py
index e4607ae7..8a91aefc 100644
--- a/tests/test_wrappers.py
+++ b/tests/test_wrappers.py
@@ -1195,14 +1195,6 @@ def test_malformed_204_response_has_no_content_length():
assert b"".join(app_iter) == b"" # ensure data will not be sent
-def test_modified_url_encoding():
- class ModifiedRequest(wrappers.Request):
- charset = "euc-kr"
-
- req = ModifiedRequest.from_values(query_string={"foo": "정상처리"}, charset="euc-kr")
- assert req.args["foo"] == "정상처리"
-
-
def test_request_method_case_sensitivity():
req = wrappers.Request(
{"REQUEST_METHOD": "get", "SERVER_NAME": "eggs", "SERVER_PORT": "80"}