mirror of https://github.com/django/django.git
Used skipUnlessDBFeature instead of checking vendor in test_filtering_on_annotate_that_uses_q.
This commit is contained in:
parent
c7f656435c
commit
069bee7c12
|
@ -74,7 +74,7 @@ class BasicExpressionsTests(TestCase):
|
|||
companies = Company.objects.annotate(foo=RawSQL('%s', ['value']))
|
||||
self.assertEqual(companies.count(), 3)
|
||||
|
||||
@unittest.skipIf(connection.vendor == 'oracle', "Oracle doesn't support using boolean type in SELECT")
|
||||
@skipUnlessDBFeature('supports_boolean_expr_in_select_clause')
|
||||
def test_filtering_on_annotate_that_uses_q(self):
|
||||
self.assertEqual(
|
||||
Company.objects.annotate(
|
||||
|
|
Loading…
Reference in New Issue