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):
86
86
# Value.as_mql() doesn't call output_field.get_db_prep_save():
87
87
# https://github.com/mongodb/django-mongodb-backend/issues/282
88
88
"model_fields.test_jsonfield.TestSaveLoad.test_bulk_update_custom_get_prep_value" ,
89
- "model_fields_.test_embedded_model_array.QueryingTests.test_array_annotation_index" ,
90
89
}
91
90
# $bitAnd, #bitOr, and $bitXor are new in MongoDB 6.3.
92
91
_django_test_expected_failures_bitwise = {
Original file line number Diff line number Diff line change
1
+ import unittest
1
2
from datetime import date
2
3
3
4
from django .core .exceptions import FieldDoesNotExist
@@ -343,6 +344,7 @@ def test_arrayfield_annotation_lookups(self):
343
344
).filter (** kwargs )
344
345
self .assertCountEqual (result , expected )
345
346
347
+ @unittest .expectedFailure
346
348
def test_array_annotation_index (self ):
347
349
# This test would be useful to have, but it cannot be implemented
348
350
# due to the current annotation handling.
You can’t perform that action at this time.
0 commit comments