summaryrefslogtreecommitdiff
path: root/tests/postgres_tests
diff options
context:
space:
mode:
authorΝικόλαος-Διγενής Καραγιάννης <digenishjkl@gmail.com>2025-12-02 12:49:20 +0200
committerGitHub <noreply@github.com>2025-12-02 11:49:20 +0100
commitcb1d2854ed2b13799f2b0cc6e04019df181bacd4 (patch)
treedf9c839d3daee2a9065848b00c0dcc1602dd40a6 /tests/postgres_tests
parent34186e731ca20a2344b1f88fd543a854d6b13a00 (diff)
Refs #35444 -- Fixed typo in PostgreSQL StringAgg deprecation warning.
Diffstat (limited to 'tests/postgres_tests')
-rw-r--r--tests/postgres_tests/test_aggregates.py2
1 files changed, 1 insertions, 1 deletions
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: