summaryrefslogtreecommitdiff
path: root/tests/wsgi
diff options
context:
space:
mode:
authorAlasdair Nicol <alasdair@memset.com>2013-10-22 11:21:07 +0100
committerAlasdair Nicol <alasdair@memset.com>2013-10-23 13:45:03 +0100
commitc3aa2948c6c14862407501290571f858ccf45b07 (patch)
tree6f0812d7db0fe2f5a6bf9e07f20ba7d442ce8789 /tests/wsgi
parent317040a73b77be8f8210801793b2ce6d1a69301e (diff)
downloaddjango-c3aa2948c6c14862407501290571f858ccf45b07.tar.gz
Fixed #21298 -- Fixed E301 pep8 warnings
Diffstat (limited to 'tests/wsgi')
-rw-r--r--tests/wsgi/tests.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/wsgi/tests.py b/tests/wsgi/tests.py
index c93094d24c..57972d2e9a 100644
--- a/tests/wsgi/tests.py
+++ b/tests/wsgi/tests.py
@@ -76,6 +76,7 @@ class GetInternalWSGIApplicationTest(unittest.TestCase):
"""
# Mock out get_wsgi_application so we know its return value is used
fake_app = object()
+
def mock_get_wsgi_app():
return fake_app
from django.core.servers import basehttp