diff options
Diffstat (limited to 'tests/postgres_tests')
| -rw-r--r-- | tests/postgres_tests/test_aggregates.py | 2 |
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: |
