Fixed flake8 error (5 space identation!!!)

This commit is contained in:
Alex Gaynor 2013-11-24 08:33:22 -06:00
parent 17912522ce
commit 8adbfdfcc4
1 changed files with 3 additions and 3 deletions

View File

@ -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"