mirror of
https://github.com/django/django.git
synced 2024-11-29 22:56:46 +01:00
Fixed flake8 error (5 space identation!!!)
This commit is contained in:
parent
17912522ce
commit
8adbfdfcc4
6
tests/cache/tests.py
vendored
6
tests/cache/tests.py
vendored
@ -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
Block a user