summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-11-24 08:33:22 -0600
committerAlex Gaynor <alex.gaynor@gmail.com>2013-11-24 08:33:22 -0600
commit8adbfdfcc4c6941ecdc5ba696dab03121568ba89 (patch)
tree2735b6f0718f7ccf7e07b8f58907bfb78018deba
parent17912522cee1277c8c126394fbe94b7172f92e83 (diff)
Fixed flake8 error (5 space identation!!!)
-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"