summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/annotations/tests.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/annotations/tests.py b/tests/annotations/tests.py
index 10cd05db63..6336cabafa 100644
--- a/tests/annotations/tests.py
+++ b/tests/annotations/tests.py
@@ -1545,8 +1545,11 @@ class AliasTests(TestCase):
qs = Book.objects.alias(
**{"crafted_alia$": FilteredRelation("authors")}
).values("name", "crafted_alia$")
- if connection.vendor == "postgresql":
- msg = "Dollar signs are not permitted in column aliases on PostgreSQL."
+ if connection.features.prohibits_dollar_signs_in_column_aliases:
+ msg = (
+ "Dollar signs are not permitted in column aliases on "
+ f"{connection.display_name}."
+ )
with self.assertRaisesMessage(ValueError, msg):
list(qs)
else: