cleanup stale test for cookie object

Signed-off-by: Harsha Narayana <harsha2k4@gmail.com>
This commit is contained in:
Harsha Narayana 2018-11-10 16:54:24 +05:30
parent ece3cdaa2e
commit c60ba81984
No known key found for this signature in database
GPG Key ID: 8AF211CB60D4B28C

View File

@ -130,8 +130,3 @@ def test_cookie_set_unknown_property():
with pytest.raises(expected_exception=KeyError) as e: with pytest.raises(expected_exception=KeyError) as e:
c["invalid"] = "value" c["invalid"] = "value"
assert e.message == "Unknown cookie property" assert e.message == "Unknown cookie property"
def test_cookie_encoding_invalid_type():
c = Cookie("test_cookie", "value")
c["max-age"] = "2d"