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.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/template_tests/test_response.py b/tests/template_tests/test_response.py
index b4dceb195d..11e31c9180 100644
--- a/tests/template_tests/test_response.py
+++ b/tests/template_tests/test_response.py
@@ -187,7 +187,7 @@ class SimpleTemplateResponseTest(TestCase):
response.render()
pickled_response = pickle.dumps(response)
unpickled_response = pickle.loads(pickled_response)
- repickled_response = pickle.dumps(unpickled_response)
+ pickle.dumps(unpickled_response)
def test_pickling_cookie(self):
response = SimpleTemplateResponse('first/test.html', {
@@ -293,7 +293,7 @@ class TemplateResponseTest(TestCase):
response.render()
pickled_response = pickle.dumps(response)
unpickled_response = pickle.loads(pickled_response)
- repickled_response = pickle.dumps(unpickled_response)
+ pickle.dumps(unpickled_response)
class CustomURLConfTest(TestCase):