Skip to content

Commit 38a27fd

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 4af0ae9 commit 38a27fd

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

tests/test_time.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -864,6 +864,11 @@ def test_naturalday_weekday() -> None:
864864
assert humanize.naturalday(past_day, weekday=True) == "last Sunday"
865865

866866
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-
867+
assert (
868+
humanize.naturalday(today + dt.timedelta(days=1), weekday=True)
869+
== "tomorrow"
870+
)
871+
assert (
872+
humanize.naturalday(today - dt.timedelta(days=1), weekday=True)
873+
== "yesterday"
874+
)

0 commit comments

Comments
 (0)