We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7861255 commit 675040bCopy full SHA for 675040b
djcelery/tests/test_backends/test_cache.py
@@ -103,7 +103,8 @@ def test_custom_cache_backend(self):
103
from celery import current_app
104
prev_backend = current_app.conf.CELERY_CACHE_BACKEND
105
prev_module = sys.modules['djcelery.backends.cache']
106
- current_app.conf.CELERY_CACHE_BACKEND = 'dummy://'
+ current_app.conf.CELERY_CACHE_BACKEND = \
107
+ 'django.core.cache.backends.dummy.DummyCache'
108
sys.modules.pop('djcelery.backends.cache')
109
try:
110
from djcelery.backends.cache import cache
0 commit comments