Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
craiga committed May 8, 2024
1 parent 05223d0 commit 68ea196
Showing 1 changed file with 8 additions and 11 deletions.
19 changes: 8 additions & 11 deletions will_of_the_prophets/tests/test_square.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,21 @@
from datetime import datetime, timezone

import pytest
import pytz

from will_of_the_prophets import board


@pytest.fixture()
def some_datetime() -> datetime:
"""Datetime."""
return pytz.utc.localize(
datetime(
year=2369,
month=7,
day=5,
hour=12,
minute=34,
second=56,
tzinfo=timezone.utc,
)
return datetime(
year=2369,
month=7,
day=5,
hour=12,
minute=34,
second=56,
tzinfo=timezone.utc,
)


Expand Down

0 comments on commit 68ea196

Please sign in to comment.