From f1640399e3c3f1a08eb5755dc1f8c6d21fad3949 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Wed, 29 Mar 2023 10:12:25 -0700 Subject: [PATCH] Python formatting --- bookwyrm/tests/views/test_status.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bookwyrm/tests/views/test_status.py b/bookwyrm/tests/views/test_status.py index 71b3eaacc..7c64fdb0c 100644 --- a/bookwyrm/tests/views/test_status.py +++ b/bookwyrm/tests/views/test_status.py @@ -462,7 +462,7 @@ http://www.fish.com/""" mentions = views.status.find_mentions(self.local_user, content) self.assertEqual( views.status.format_mentions(content, mentions), - 'a link to https://example.com/user/@mouse', + "a link to https://example.com/user/@mouse", ) def test_format_hashtag_with_pound_symbol_links(self, *_): @@ -471,7 +471,7 @@ http://www.fish.com/""" hashtags = views.status.find_or_create_hashtags(content) self.assertEqual( views.status.format_hashtags(content, hashtags), - 'a link to https://example.com/page#anchor', + "a link to https://example.com/page#anchor", ) def test_to_markdown(self, *_):