summaryrefslogtreecommitdiff
path: root/django/test/__init__.py
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2015-03-26 16:54:43 -0400
committerSimon Charette <charette.s@gmail.com>2015-03-29 22:03:30 -0400
commitdc27f3ee0c3eb9bb17d6cb764788eeaf73a371d7 (patch)
treedf7d477583666493bb73b857d8829158b6f27030 /django/test/__init__.py
parent8119876d4a533fbc2ba4d1c30eaddbcc28119488 (diff)
Fixed #19259 -- Added group by selected primary keys support.
Diffstat (limited to 'django/test/__init__.py')
-rw-r--r--django/test/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/django/test/__init__.py b/django/test/__init__.py
index f5213301d3..884b1c5ee3 100644
--- a/django/test/__init__.py
+++ b/django/test/__init__.py
@@ -6,7 +6,7 @@ from django.test.client import Client, RequestFactory
from django.test.testcases import (
TestCase, TransactionTestCase,
SimpleTestCase, LiveServerTestCase, skipIfDBFeature,
- skipUnlessDBFeature
+ skipUnlessAnyDBFeature, skipUnlessDBFeature
)
from django.test.utils import (ignore_warnings, modify_settings,
override_settings, override_system_checks)
@@ -14,8 +14,8 @@ from django.test.utils import (ignore_warnings, modify_settings,
__all__ = [
'Client', 'RequestFactory', 'TestCase', 'TransactionTestCase',
'SimpleTestCase', 'LiveServerTestCase', 'skipIfDBFeature',
- 'skipUnlessDBFeature', 'ignore_warnings', 'modify_settings',
- 'override_settings', 'override_system_checks'
+ 'skipUnlessAnyDBFeature', 'skipUnlessDBFeature', 'ignore_warnings',
+ 'modify_settings', 'override_settings', 'override_system_checks'
]
# To simplify Django's test suite; not meant as a public API