summaryrefslogtreecommitdiff
path: root/tests/queries/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/queries/tests.py')
-rw-r--r--tests/queries/tests.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/queries/tests.py b/tests/queries/tests.py
index f2136df243..c00a78e2ed 100644
--- a/tests/queries/tests.py
+++ b/tests/queries/tests.py
@@ -3536,13 +3536,7 @@ class NullInExcludeTest(TestCase):
# into subquery above
self.assertIs(inner_qs._result_cache, None)
- @unittest.expectedFailure
def test_col_not_in_list_containing_null(self):
- """
- The following case is not handled properly because
- SQL's COL NOT IN (list containing null) handling is too weird to
- abstract away.
- """
self.assertQuerySetEqual(
NullableName.objects.exclude(name__in=[None]), ["i1"], attrgetter("name")
)