Fixed flake8 error (5 space identation!!!)
This commit is contained in:
parent
17912522ce
commit
8adbfdfcc4
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue