From 47d0bb6b7d132ba54c1f230810476c6067af73e5 Mon Sep 17 00:00:00 2001 From: Lauryn Menard Date: Fri, 16 Jun 2023 11:49:38 +0200 Subject: [PATCH] analytics: Replace "private message" with "direct message". --- analytics/tests/test_counts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/analytics/tests/test_counts.py b/analytics/tests/test_counts.py index f910e97495..00343378af 100644 --- a/analytics/tests/test_counts.py +++ b/analytics/tests/test_counts.py @@ -657,7 +657,7 @@ class TestCountStats(AnalyticsTestCase): self.create_message(user1, recipient_huddle1) self.create_message(user2, recipient_huddle2) - # private messages + # direct messages recipient_user1 = Recipient.objects.get(type_id=user1.id, type=Recipient.PERSONAL) recipient_user2 = Recipient.objects.get(type_id=user2.id, type=Recipient.PERSONAL) recipient_user3 = Recipient.objects.get(type_id=user3.id, type=Recipient.PERSONAL)