From 9f2ca73a58afc4778217cd599a2f681753a350ac Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Tue, 19 Jan 2021 16:48:06 -0800 Subject: [PATCH] Tests terminal space in mentions string --- bookwyrm/tests/test_templatetags.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bookwyrm/tests/test_templatetags.py b/bookwyrm/tests/test_templatetags.py index 2cc61eab3..d315144f6 100644 --- a/bookwyrm/tests/test_templatetags.py +++ b/bookwyrm/tests/test_templatetags.py @@ -228,7 +228,7 @@ class TemplateTags(TestCase): status = models.Status.objects.create( content='hi', user=self.remote_user) result = bookwyrm_tags.get_mentions(status, self.user) - self.assertEqual(result, '@rat@example.com') + self.assertEqual(result, '@rat@example.com ') def test_get_status_preview_name(self):