Skip to content

Commit

Permalink
whoops, fix dt->datetime
Browse files Browse the repository at this point in the history
  • Loading branch information
menzenski committed Jan 30, 2023
1 parent fd22052 commit fbc27a7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/_singerlib/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@


def test_small_years():
assert strftime(dt(90, 1, 1, tzinfo=pytz.UTC)) == "0090-01-01T00:00:00.000000Z"
assert (
strftime(datetime(90, 1, 1, tzinfo=pytz.UTC)) == "0090-01-01T00:00:00.000000Z"
)


def test_round_trip():
Expand Down

0 comments on commit fbc27a7

Please sign in to comment.