From 848454c50fab213cab4837dbc0c23ccfd680e0a2 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Wed, 10 Feb 2021 16:31:41 -0800 Subject: [PATCH] Fixes templatetag test --- bookwyrm/tests/test_templatetags.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bookwyrm/tests/test_templatetags.py b/bookwyrm/tests/test_templatetags.py index 267587c2..45c99344 100644 --- a/bookwyrm/tests/test_templatetags.py +++ b/bookwyrm/tests/test_templatetags.py @@ -65,9 +65,9 @@ class TemplateTags(TestCase): self.assertEqual(bookwyrm_tags.get_notification_count(self.user), 0) models.Notification.objects.create( - user=self.user, notification_type='FOLLOW') + user=self.user, notification_type='FAVORITE') models.Notification.objects.create( - user=self.user, notification_type='FOLLOW') + user=self.user, notification_type='MENTION') models.Notification.objects.create( user=self.remote_user, notification_type='FOLLOW')