From c069ee0b9dd823899bd7095deadf167cd426c0b7 Mon Sep 17 00:00:00 2001 From: Hasan Ramezani Date: Wed, 27 Oct 2021 17:13:40 +0200 Subject: Fixed #33224 -- Removed DatabaseFeatures.supports_mixed_date_datetime_comparisons. --- tests/expressions/tests.py | 1 - 1 file changed, 1 deletion(-) (limited to 'tests/expressions/tests.py') diff --git a/tests/expressions/tests.py b/tests/expressions/tests.py index 53448ed1d9..4bb65c9031 100644 --- a/tests/expressions/tests.py +++ b/tests/expressions/tests.py @@ -1473,7 +1473,6 @@ class FTimeDeltaTests(TestCase): test_set = [e.name for e in Experiment.objects.filter(completed__lte=F('assigned') + days)] self.assertEqual(test_set, self.expnames[:i + 1]) - @skipUnlessDBFeature("supports_mixed_date_datetime_comparisons") def test_mixed_comparisons1(self): for i, delay in enumerate(self.delays): test_set = [e.name for e in Experiment.objects.filter(assigned__gt=F('start') - delay)] -- cgit v1.2.1