mirror of
https://github.com/django/django.git
synced 2025-11-25 13:13:28 +00:00
Fixed flake8 error (5 space identation!!!)
This commit is contained in:
parent
17912522ce
commit
8adbfdfcc4
1 changed files with 3 additions and 3 deletions
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…
Add table
Add a link
Reference in a new issue