| 4 | | +class _SerializedRollbackTransactionTestCase: |
| | 4 | index c8bb16e7b3..85b9c26427 100644 |
| | 5 | --- a/django/test/runner.py |
| | 6 | +++ b/django/test/runner.py |
| | 7 | @@ -21,7 +21,7 @@ |
| | 8 | import django |
| | 9 | from django.core.management import call_command |
| | 10 | from django.db import connections |
| | 11 | -from django.test import SimpleTestCase, TestCase |
| | 12 | +from django.test import SimpleTestCase, TestCase, TransactionTestCase |
| | 13 | from django.test.utils import NullTimeKeeper, TimeKeeper, iter_test_cases |
| | 14 | from django.test.utils import setup_databases as _setup_databases |
| | 15 | from django.test.utils import setup_test_environment |
| | 16 | @@ -656,6 +656,19 @@ def shuffle(self, items, key): |
| | 17 | return [hashes[hashed] for hashed in sorted(hashes)] |
| | 18 | |
| | 19 | |
| | 20 | +class _SerializedRollbackTransactionTestCaseType(type): |