diff options
Diffstat (limited to 'tests/expressions/tests.py')
-rw-r--r-- | tests/expressions/tests.py | 1 |
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)] |