summaryrefslogtreecommitdiff
path: root/tests/template_tests/test_response.py
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-02-05 13:53:03 -0500
committerTim Graham <timograham@gmail.com>2016-02-05 15:11:07 -0500
commit406675b1a03c0568f7768a73e7c279011e56054d (patch)
tree092da11ce8e2773a29576b2d937e188c7a46621d /tests/template_tests/test_response.py
parent275314512d7dd10065026f02f61931e4c62c9cc8 (diff)
downloaddjango-26176.tar.gz
Fixed #26176 -- Fixed E123 flake8 warnings.26176
Diffstat (limited to 'tests/template_tests/test_response.py')
-rw-r--r--tests/template_tests/test_response.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/template_tests/test_response.py b/tests/template_tests/test_response.py
index 3e99134afb..85b5f4bf0f 100644
--- a/tests/template_tests/test_response.py
+++ b/tests/template_tests/test_response.py
@@ -270,7 +270,8 @@ class TemplateResponseTest(SimpleTestCase):
def test_pickling(self):
# Create a template response. The context is
# known to be unpicklable (e.g., a function).
- response = TemplateResponse(self.factory.get('/'),
+ response = TemplateResponse(
+ self.factory.get('/'),
'first/test.html', {
'value': 123,
'fn': datetime.now,