summaryrefslogtreecommitdiff
path: root/tests/test_authentication.py
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2018-11-14 18:50:02 -0600
committerMichael Merickel <michael@merickel.org>2018-11-14 18:59:44 -0600
commit5e7361044cbd18d5d9f72f603a9861c1e69a037b (patch)
tree825c07f53cd6dc51e87a6195585174ce8230f41c /tests/test_authentication.py
parent9ead1d8e84edcb86ea9e07b4d2c31e7b74a098ed (diff)
downloadpyramid-5e7361044cbd18d5d9f72f603a9861c1e69a037b.tar.gz
pyramid-5e7361044cbd18d5d9f72f603a9861c1e69a037b.tar.bz2
pyramid-5e7361044cbd18d5d9f72f603a9861c1e69a037b.zip
remove SimpleCookie and escape shims
Diffstat (limited to 'tests/test_authentication.py')
-rw-r--r--tests/test_authentication.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test_authentication.py b/tests/test_authentication.py
index 87b7da5a8..a18ccaeb4 100644
--- a/tests/test_authentication.py
+++ b/tests/test_authentication.py
@@ -1,3 +1,4 @@
+from http.cookies import SimpleCookie
import unittest
import warnings
from pyramid import testing
@@ -706,8 +707,6 @@ class TestAuthTktCookieHelper(unittest.TestCase):
return cookie
def _parseCookie(self, cookie):
- from pyramid.compat import SimpleCookie
-
cookies = SimpleCookie()
cookies.load(cookie)
return cookies.get('auth_tkt')