diff options
author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2013-06-04 08:09:29 +0200 |
---|---|---|
committer | Aymeric Augustin <aymeric.augustin@m4x.org> | 2013-06-10 11:30:01 +0200 |
commit | c6e6d4eeb776c473567362405cdbc6a0328eb194 (patch) | |
tree | c55be28ca7d228717c286d6b14cd27fda89a1d9a /tests/requests | |
parent | 4daf570b98cc840e1a154f3876bc7463924cb9ae (diff) | |
download | django-c6e6d4eeb776c473567362405cdbc6a0328eb194.tar.gz |
Defined available_apps in relevant tests.
Fixed #20483.
Diffstat (limited to 'tests/requests')
-rw-r--r-- | tests/requests/tests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/requests/tests.py b/tests/requests/tests.py index 4d730bb561..d9120db4e7 100644 --- a/tests/requests/tests.py +++ b/tests/requests/tests.py @@ -683,6 +683,8 @@ class RequestsTests(SimpleTestCase): "Cannot establish two connections to an in-memory SQLite database.") class DatabaseConnectionHandlingTests(TransactionTestCase): + available_apps = [] + def setUp(self): # Use a temporary connection to avoid messing with the main one. self._old_default_connection = connections['default'] |