summaryrefslogtreecommitdiff
path: root/tests/wsgi
diff options
context:
space:
mode:
authorAlasdair Nicol <alasdair@memset.com>2013-10-18 00:58:02 +0100
committerAlasdair Nicol <alasdair@memset.com>2013-10-18 01:46:24 +0100
commitbab9123daa5d05150951f74183906a76d2b0cf27 (patch)
tree4fc24535f85f84c69e64c6eac654294725d906df /tests/wsgi
parent65d1d65d52a87bba22845bcb7c3c921a8789ec19 (diff)
downloaddjango-bab9123daa5d05150951f74183906a76d2b0cf27.tar.gz
Fixed #21268 -- Fixed E303 pep8 warnings
Diffstat (limited to 'tests/wsgi')
-rw-r--r--tests/wsgi/tests.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/wsgi/tests.py b/tests/wsgi/tests.py
index afd59a6e1f..bf8bc2d60b 100644
--- a/tests/wsgi/tests.py
+++ b/tests/wsgi/tests.py
@@ -67,7 +67,6 @@ class GetInternalWSGIApplicationTest(unittest.TestCase):
self.assertTrue(app is application)
-
@override_settings(WSGI_APPLICATION=None)
def test_default(self):
"""
@@ -90,7 +89,6 @@ class GetInternalWSGIApplicationTest(unittest.TestCase):
finally:
basehttp.get_wsgi_application = _orig_get_wsgi_app
-
@override_settings(WSGI_APPLICATION="wsgi.noexist.app")
def test_bad_module(self):
with six.assertRaisesRegex(self,
@@ -99,7 +97,6 @@ class GetInternalWSGIApplicationTest(unittest.TestCase):
get_internal_wsgi_application()
-
@override_settings(WSGI_APPLICATION="wsgi.wsgi.noexist")
def test_bad_name(self):
with six.assertRaisesRegex(self,