There was an error while loading. Please reload this page.
1 parent 4af0ae9 commit 38a27fdCopy full SHA for 38a27fd
1 file changed
tests/test_time.py
@@ -864,6 +864,11 @@ def test_naturalday_weekday() -> None:
864
assert humanize.naturalday(past_day, weekday=True) == "last Sunday"
865
866
assert humanize.naturalday(today, weekday=True) == "today"
867
- assert humanize.naturalday(today + dt.timedelta(days=1), weekday=True) == "tomorrow"
868
- assert humanize.naturalday(today - dt.timedelta(days=1), weekday=True) == "yesterday"
869
-
+ assert (
+ humanize.naturalday(today + dt.timedelta(days=1), weekday=True)
+ == "tomorrow"
870
+ )
871
872
+ humanize.naturalday(today - dt.timedelta(days=1), weekday=True)
873
+ == "yesterday"
874
0 commit comments