mirror of
https://github.com/django/django.git
synced 2025-08-02 10:02:41 +00:00
Fixed #32178 -- Allowed database backends to skip tests and mark expected failures.
Co-authored-by: Tim Graham <timograham@gmail.com>
This commit is contained in:
parent
5ce31d6a71
commit
275dd4ebba
29 changed files with 248 additions and 87 deletions
|
@ -1,6 +1,6 @@
|
|||
import operator
|
||||
import uuid
|
||||
from unittest import mock, skipIf
|
||||
from unittest import mock
|
||||
|
||||
from django import forms
|
||||
from django.core import serializers
|
||||
|
@ -719,10 +719,6 @@ class TestQuerying(TestCase):
|
|||
objs_with_value,
|
||||
)
|
||||
|
||||
@skipIf(
|
||||
connection.vendor == 'oracle',
|
||||
'Raises ORA-00600: internal error code on Oracle 18.',
|
||||
)
|
||||
def test_usage_in_subquery(self):
|
||||
self.assertSequenceEqual(
|
||||
NullableJSONModel.objects.filter(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue