summaryrefslogtreecommitdiff
path: root/tests/test_authentication.py
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2019-12-29 22:44:30 -0600
committerGitHub <noreply@github.com>2019-12-29 22:44:30 -0600
commitcc396692d82441f8142fb14041542ebd2dad6f0a (patch)
treeb22cabb8d796ba6fecb359f991fcc61299581eb5 /tests/test_authentication.py
parentce48c934046f470f8c32ec98666f484f482f32f0 (diff)
parent3006bdc7b9d5590415d15005c755e307ddb588ca (diff)
downloadpyramid-cc396692d82441f8142fb14041542ebd2dad6f0a.tar.gz
pyramid-cc396692d82441f8142fb14041542ebd2dad6f0a.tar.bz2
pyramid-cc396692d82441f8142fb14041542ebd2dad6f0a.zip
Merge pull request #3554 from mmerickel/isort
isort
Diffstat (limited to 'tests/test_authentication.py')
-rw-r--r--tests/test_authentication.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_authentication.py b/tests/test_authentication.py
index e0f5a7963..ec3aef4ef 100644
--- a/tests/test_authentication.py
+++ b/tests/test_authentication.py
@@ -1,8 +1,9 @@
from http.cookies import SimpleCookie
import unittest
import warnings
+
from pyramid import testing
-from pyramid.util import text_, bytes_
+from pyramid.util import bytes_, text_
class TestCallbackAuthenticationPolicyDebugging(unittest.TestCase):