From 9ef438c97291da70688147bf1760a1f63f13f0bd Mon Sep 17 00:00:00 2001 From: freyamade Date: Tue, 1 Feb 2022 17:11:43 +0000 Subject: [PATCH] Updating text in notification tests --- backend/api/tests/test_loot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/api/tests/test_loot.py b/backend/api/tests/test_loot.py index 3def5291..3d1c4b36 100644 --- a/backend/api/tests/test_loot.py +++ b/backend/api/tests/test_loot.py @@ -1049,8 +1049,8 @@ def test_create_with_bis_notification(self): self.assertEqual(notif.link, f'/characters/{self.team_lead.id}/bis_list/{self.tl_main_bis.id}/') self.assertEqual( notif.text, - f'{self.team_lead} has had an item in their {self.tl_main_bis.job.id} ' - f'BIS List updated via the Loot Tracker in {self.team.name}!', + f'"{self.team_lead}"\'s {self.tl_main_bis.job.id} BIS List was updated via ' + f'"{self.team.name}"\'s Loot Tracker!', ) self.assertEqual(notif.type, 'loot_tracker_update') self.assertFalse(notif.read)