summaryrefslogtreecommitdiff
path: root/tests/template_tests/test_response.py
diff options
context:
space:
mode:
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,