summaryrefslogtreecommitdiff
path: root/tests/wsgi
diff options
context:
space:
mode:
authorAlasdair Nicol <alasdair@memset.com>2013-10-18 10:02:43 +0100
committerAlasdair Nicol <alasdair@memset.com>2013-10-18 10:07:39 +0100
commita800036981c6fea8eb3dac22467965c71af05d29 (patch)
treec872f8a78d26f1de133d415fef922013dafe878a /tests/wsgi
parent65750b83523870851008e804364121f8c458fc2d (diff)
Fixed #21287 -- Fixed E123 pep8 warnings
Diffstat (limited to 'tests/wsgi')
-rw-r--r--tests/wsgi/tests.py2
-rw-r--r--tests/wsgi/urls.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/wsgi/tests.py b/tests/wsgi/tests.py
index bf8bc2d60b..c93094d24c 100644
--- a/tests/wsgi/tests.py
+++ b/tests/wsgi/tests.py
@@ -34,7 +34,7 @@ class WSGITest(TestCase):
PATH_INFO="/",
CONTENT_TYPE="text/html; charset=utf-8",
REQUEST_METHOD="GET"
- )
+ )
response_data = {}
diff --git a/tests/wsgi/urls.py b/tests/wsgi/urls.py
index 9639f0fd34..7c6701adec 100644
--- a/tests/wsgi/urls.py
+++ b/tests/wsgi/urls.py
@@ -7,4 +7,4 @@ def helloworld(request):
urlpatterns = patterns(
"",
url("^$", helloworld)
- )
+)