From 78a55a04c9e6591167e1993c35d3737a705c6ec9 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Thu, 12 Dec 2024 20:51:33 -0500 Subject: [PATCH] Fixed typo in ArrayField test name. --- tests/postgres_tests/test_array.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/postgres_tests/test_array.py b/tests/postgres_tests/test_array.py index ba7151d4a2..d930a01a1d 100644 --- a/tests/postgres_tests/test_array.py +++ b/tests/postgres_tests/test_array.py @@ -547,7 +547,7 @@ class TestQuerying(PostgreSQLTestCase): NullableIntegerArrayModel.objects.filter(field__0_2=[2, 3]), self.objs[2:3] ) - def test_order_by_slice(self): + def test_order_by_index(self): more_objs = ( NullableIntegerArrayModel.objects.create(field=[1, 637]), NullableIntegerArrayModel.objects.create(field=[2, 1]),