summaryrefslogtreecommitdiff
path: root/tests/cache
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cache')
-rw-r--r--tests/cache/tests.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/cache/tests.py b/tests/cache/tests.py
index fc7154c987..c4a941dbf8 100644
--- a/tests/cache/tests.py
+++ b/tests/cache/tests.py
@@ -864,9 +864,9 @@ class BaseCacheTests(object):
self.assertEqual(get_cache_data.cookies, response.cookies)
def test_add_fail_on_pickleerror(self):
- "See https://code.djangoproject.com/ticket/21200"
- with self.assertRaises(pickle.PickleError):
- cache.add('unpickable', Unpickable())
+ "See https://code.djangoproject.com/ticket/21200"
+ with self.assertRaises(pickle.PickleError):
+ cache.add('unpickable', Unpickable())
def test_set_fail_on_pickleerror(self):
"See https://code.djangoproject.com/ticket/21200"