From cb1d2854ed2b13799f2b0cc6e04019df181bacd4 Mon Sep 17 00:00:00 2001 From: Νικόλαος-Διγενής Καραγιάννης Date: Tue, 2 Dec 2025 12:49:20 +0200 Subject: Refs #35444 -- Fixed typo in PostgreSQL StringAgg deprecation warning. --- tests/postgres_tests/test_aggregates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/postgres_tests') diff --git a/tests/postgres_tests/test_aggregates.py b/tests/postgres_tests/test_aggregates.py index e3a5521f74..4355eb2f98 100644 --- a/tests/postgres_tests/test_aggregates.py +++ b/tests/postgres_tests/test_aggregates.py @@ -641,7 +641,7 @@ class TestGeneralAggregate(PostgreSQLTestCase): def test_string_agg_deprecation(self): msg = ( "The PostgreSQL specific StringAgg function is deprecated. Use " - "django.db.models.aggregate.StringAgg instead." + "django.db.models.aggregates.StringAgg instead." ) with self.assertWarnsMessage(RemovedInDjango70Warning, msg) as ctx: -- cgit v1.3