From 855d1305c54dbcd3a7fed3f7b10ff63f1bac88ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anssi=20K=C3=A4=C3=A4ri=C3=A4inen?= Date: Fri, 14 Jun 2013 17:00:47 +0300 Subject: [PATCH] Added cache to available_apps in cache tests --- tests/cache/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cache/tests.py b/tests/cache/tests.py index 75b7851400..7413a4aae6 100644 --- a/tests/cache/tests.py +++ b/tests/cache/tests.py @@ -828,7 +828,7 @@ def custom_key_func(key, key_prefix, version): class DBCacheTests(BaseCacheTests, TransactionTestCase): - available_apps = [] + available_apps = ['cache'] backend_name = 'django.core.cache.backends.db.DatabaseCache' def setUp(self):