Skip to content

Commit 675040b

Browse files
committed
Tests passing on Django 1.7a1
1 parent 7861255 commit 675040b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

djcelery/tests/test_backends/test_cache.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,8 @@ def test_custom_cache_backend(self):
103103
from celery import current_app
104104
prev_backend = current_app.conf.CELERY_CACHE_BACKEND
105105
prev_module = sys.modules['djcelery.backends.cache']
106-
current_app.conf.CELERY_CACHE_BACKEND = 'dummy://'
106+
current_app.conf.CELERY_CACHE_BACKEND = \
107+
'django.core.cache.backends.dummy.DummyCache'
107108
sys.modules.pop('djcelery.backends.cache')
108109
try:
109110
from djcelery.backends.cache import cache

0 commit comments

Comments
 (0)