Fixed #22907 -- Array contains must have same type.

This commit is contained in:
Marc Tamlyn 2014-07-15 12:13:23 +01:00
parent 9a2ab62977
commit b65a2001e7
2 changed files with 9 additions and 1 deletions

View file

@ -118,6 +118,13 @@ class TestQuerying(TestCase):
self.objs[1:3]
)
def test_contains_charfield(self):
# Regression for #22907
self.assertSequenceEqual(
CharArrayModel.objects.filter(field__contains=['text']),
[]
)
def test_index(self):
self.assertSequenceEqual(
NullableIntegerArrayModel.objects.filter(field__0=2),