summaryrefslogtreecommitdiff
path: root/tests/db_functions/text/test_concat.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/db_functions/text/test_concat.py')
-rw-r--r--tests/db_functions/text/test_concat.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/db_functions/text/test_concat.py b/tests/db_functions/text/test_concat.py
index 5932a9bed0..1441e31e97 100644
--- a/tests/db_functions/text/test_concat.py
+++ b/tests/db_functions/text/test_concat.py
@@ -21,7 +21,7 @@ class ConcatTests(TestCase):
Author.objects.create(name="Margaret", goes_by="Maggie")
Author.objects.create(name="Rhonda", alias="adnohR")
authors = Author.objects.annotate(joined=Concat("alias", "goes_by"))
- self.assertQuerysetEqual(
+ self.assertQuerySetEqual(
authors.order_by("name"),
[
"",
@@ -46,7 +46,7 @@ class ConcatTests(TestCase):
authors = Author.objects.annotate(
joined=Concat("name", V(" ("), "goes_by", V(")"), output_field=CharField()),
)
- self.assertQuerysetEqual(
+ self.assertQuerySetEqual(
authors.order_by("name"),
[
"Jayden ()",