10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de7256b commit 2ce78edCopy full SHA for 2ce78ed
test_haystack/test_django_config_detection.py
@@ -16,10 +16,6 @@ def testDefaultAppConfigIsDefined_whenDjangoVersionIsLessThan3_2(self):
16
has_default_appconfig_attr = hasattr(haystack, "default_app_config")
17
self.assertTrue(has_default_appconfig_attr)
18
19
- @unittest.skipIf(
20
- django.VERSION < (3, 2),
21
- "default_app_config should be used in versions prior to django 3.2.",
22
- )
23
- def testDefaultAppConfigIsDefined_whenDjangoVersionIsMoreThan3_2(self):
+ def testDefaultAppConfigIsDefined_whenDjangoVersionIsMoreThan3_2(self):
24
25
self.assertFalse(has_default_appconfig_attr)
0 commit comments