From 514c54f30a6f101fdb0f097a10a3fd1f8c72b168 Mon Sep 17 00:00:00 2001 From: Hugh Rundle Date: Thu, 19 Sep 2024 19:46:03 +1000 Subject: [PATCH] black formatting --- bookwyrm/tests/templatetags/test_status_display.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/bookwyrm/tests/templatetags/test_status_display.py b/bookwyrm/tests/templatetags/test_status_display.py index e62b75f37..de7d3ae2f 100644 --- a/bookwyrm/tests/templatetags/test_status_display.py +++ b/bookwyrm/tests/templatetags/test_status_display.py @@ -114,7 +114,12 @@ class StatusDisplayTags(TestCase): with patch("django.utils.timezone.now") as timezone_mock: timezone_mock.return_value = datetime.datetime( # bookwyrm-social#3365: bug with exact month deltas - 2022, 3, 1, 0, 0, tzinfo=datetime.timezone.utc + 2022, + 3, + 1, + 0, + 0, + tzinfo=datetime.timezone.utc, ) result = status_display.get_published_date(date) self.assertEqual(result, "January 1")