Ticket #32227: scenario-32227.diff

File scenario-32227.diff, 673 bytes (added by Mariusz Felisiak, 3 years ago)
  • tests/postgres_tests/test_array.py

    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):  
    205205    @classmethod
    206206    def setUpTestData(cls):
    207207        cls.objs = NullableIntegerArrayModel.objects.bulk_create([
    208             NullableIntegerArrayModel(field=[1]),
     208            NullableIntegerArrayModel(field=[1], field_nested=[[1], [2, 3]]),
    209209            NullableIntegerArrayModel(field=[2]),
    210210            NullableIntegerArrayModel(field=[2, 3]),
    211211            NullableIntegerArrayModel(field=[20, 30, 40]),
Back to Top