diff options
| author | Tim Graham <timograham@gmail.com> | 2024-12-12 20:51:33 -0500 |
|---|---|---|
| committer | Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | 2024-12-13 09:00:44 +0100 |
| commit | 78a55a04c9e6591167e1993c35d3737a705c6ec9 (patch) | |
| tree | 5a2da2bf9371afd59e35d47ead42c20d048ead2c /tests/postgres_tests | |
| parent | 6f38697f90a14f1450a71c1e40aea0f5df7dca86 (diff) | |
Fixed typo in ArrayField test name.
Diffstat (limited to 'tests/postgres_tests')
| -rw-r--r-- | tests/postgres_tests/test_array.py | 2 |
1 files changed, 1 insertions, 1 deletions
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]), |
