File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,6 @@ class DatabaseFeatures(BaseDatabaseFeatures):
8686 # Value.as_mql() doesn't call output_field.get_db_prep_save():
8787 # https://github.com/mongodb/django-mongodb-backend/issues/282
8888 "model_fields.test_jsonfield.TestSaveLoad.test_bulk_update_custom_get_prep_value" ,
89- "model_fields_.test_embedded_model_array.QueryingTests.test_array_annotation_index" ,
9089 }
9190 # $bitAnd, #bitOr, and $bitXor are new in MongoDB 6.3.
9291 _django_test_expected_failures_bitwise = {
Original file line number Diff line number Diff line change 1+ import unittest
12from datetime import date
23
34from django .core .exceptions import FieldDoesNotExist
@@ -343,6 +344,7 @@ def test_arrayfield_annotation_lookups(self):
343344 ).filter (** kwargs )
344345 self .assertCountEqual (result , expected )
345346
347+ @unittest .expectedFailure
346348 def test_array_annotation_index (self ):
347349 # This test would be useful to have, but it cannot be implemented
348350 # due to the current annotation handling.
You can’t perform that action at this time.
0 commit comments