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/select_for_update | |
| parent | 4daf570b98cc840e1a154f3876bc7463924cb9ae (diff) | |
Defined available_apps in relevant tests.
Fixed #20483.
Diffstat (limited to 'tests/select_for_update')
| -rw-r--r-- | tests/select_for_update/tests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/select_for_update/tests.py b/tests/select_for_update/tests.py index c2fa22705a..f087ca123a 100644 --- a/tests/select_for_update/tests.py +++ b/tests/select_for_update/tests.py @@ -23,6 +23,8 @@ requires_threading = unittest.skipUnless(threading, 'requires threading') class SelectForUpdateTests(TransactionTestCase): + available_apps = ['select_for_update'] + def setUp(self): transaction.enter_transaction_management() self.person = Person.objects.create(name='Reinhardt') |
