summaryrefslogtreecommitdiff
path: root/tests/expressions/tests.py
diff options
context:
space:
mode:
authorHasan Ramezani <hasan.r67@gmail.com>2021-10-27 17:13:40 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-11-02 07:30:38 +0100
commitc069ee0b9dd823899bd7095deadf167cd426c0b7 (patch)
treeaa3db681a3c88442ec978b6445ce0ae544ca0946 /tests/expressions/tests.py
parent9e6d6316977d5668a1d2d1f77b861b2b9323dcdf (diff)
downloaddjango-c069ee0b9dd823899bd7095deadf167cd426c0b7.tar.gz
Fixed #33224 -- Removed DatabaseFeatures.supports_mixed_date_datetime_comparisons.
Diffstat (limited to 'tests/expressions/tests.py')
-rw-r--r--tests/expressions/tests.py1
1 files changed, 0 insertions, 1 deletions
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)]