diff options
| author | Anssi Kääriäinen <akaariai@gmail.com> | 2013-06-14 17:00:47 +0300 |
|---|---|---|
| committer | Anssi Kääriäinen <akaariai@gmail.com> | 2013-06-14 17:05:54 +0300 |
| commit | 855d1305c54dbcd3a7fed3f7b10ff63f1bac88ba (patch) | |
| tree | cdd869056bac19013ec00503cb3a05c6aa3a8d9c | |
| parent | ffa8a9ab24c8db6ed3ddc6ca09e8e852c651244b (diff) | |
Added cache to available_apps in cache tests
| -rw-r--r-- | tests/cache/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): |
