From c60ba81984f6401b011ec8b43a03d113aafdd2cf Mon Sep 17 00:00:00 2001 From: Harsha Narayana Date: Sat, 10 Nov 2018 16:54:24 +0530 Subject: [PATCH] cleanup stale test for cookie object Signed-off-by: Harsha Narayana --- tests/test_cookies.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/test_cookies.py b/tests/test_cookies.py index b920ccd8..c3fd98f0 100644 --- a/tests/test_cookies.py +++ b/tests/test_cookies.py @@ -130,8 +130,3 @@ def test_cookie_set_unknown_property(): with pytest.raises(expected_exception=KeyError) as e: c["invalid"] = "value" assert e.message == "Unknown cookie property" - - -def test_cookie_encoding_invalid_type(): - c = Cookie("test_cookie", "value") - c["max-age"] = "2d"