From afaf6c7d6245a0f4f2e6bbe51e59b2178d4fd78c Mon Sep 17 00:00:00 2001 From: Matt Wright Date: Fri, 20 Dec 2013 13:38:44 -0500 Subject: [PATCH] Polish --- tests/functional_tests.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/functional_tests.py b/tests/functional_tests.py index c64d6f4..36d623a 100644 --- a/tests/functional_tests.py +++ b/tests/functional_tests.py @@ -186,11 +186,9 @@ class DefaultSecurityTests(SecurityTest): r.headers['WWW-Authenticate']) def test_multi_auth_basic(self): - h = { + r = self._get('/multi_auth', headers={ 'Authorization': 'Basic %s' % base64.b64encode(b"joe@lp.com:password") - } - print(h) - r = self._get('/multi_auth', headers=h) + }) self.assertIn(b'Basic', r.data) def test_multi_auth_token(self):