aboutsummaryrefslogtreecommitdiffstats
path: root/tests/middleware/test_if_none_match.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/middleware/test_if_none_match.py')
-rw-r--r--tests/middleware/test_if_none_match.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/middleware/test_if_none_match.py b/tests/middleware/test_if_none_match.py
index 8456c05..0a0cdf8 100644
--- a/tests/middleware/test_if_none_match.py
+++ b/tests/middleware/test_if_none_match.py
@@ -76,13 +76,6 @@ def test_etag_matches_if_none_match_header_list(app, value):
assert response.status == "304 Not Modified"
-def test_etag_matches_if_none_match_header_list2(app):
- environ = {"REQUEST_METHOD": "GET", "HTTP_IF_NONE_MATCH": f'"54321", "{ETAG}"'}
- response = call_app(app, environ)
- assert response.data == b""
- assert response.status == "304 Not Modified"
-
-
def test_etag_matches_if_none_match_header_star(app):
environ = {"REQUEST_METHOD": "GET", "HTTP_IF_NONE_MATCH": "*"}
response = call_app(app, environ)