Skip to content

Commit 0c55b60

Browse files
committed
AutoField unsupported in Cast tests
1 parent 63f47a6 commit 0c55b60

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tests/db_functions/comparison/test_cast.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,10 @@ def test_cast_to_decimal_field(self):
6363

6464
def test_cast_to_integer(self):
6565
for field_class in (
66-
models.AutoField,
67-
models.BigAutoField,
68-
models.SmallAutoField,
66+
# Unsuppported on MongoDB
67+
# models.AutoField,
68+
# models.BigAutoField,
69+
# models.SmallAutoField,
6970
models.IntegerField,
7071
models.BigIntegerField,
7172
models.SmallIntegerField,

0 commit comments

Comments
 (0)