diff --git a/tests/postgres_tests/test_array.py b/tests/postgres_tests/test_array.py
index 822e61f4e4..6d83aff633 100644
a
|
b
|
class TestQuerying(PostgreSQLTestCase):
|
205 | 205 | @classmethod |
206 | 206 | def setUpTestData(cls): |
207 | 207 | cls.objs = NullableIntegerArrayModel.objects.bulk_create([ |
208 | | NullableIntegerArrayModel(field=[1]), |
| 208 | NullableIntegerArrayModel(field=[1], field_nested=[[1], [2, 3]]), |
209 | 209 | NullableIntegerArrayModel(field=[2]), |
210 | 210 | NullableIntegerArrayModel(field=[2, 3]), |
211 | 211 | NullableIntegerArrayModel(field=[20, 30, 40]), |