Skip to content

Commit

Permalink
add missing assert to test
Browse files Browse the repository at this point in the history
  • Loading branch information
seanbreckenridge committed Jan 24, 2024
1 parent e6aebe4 commit ccc1692
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion google_takeout_parser/parse_html/html_time_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def test_parse_dt() -> None:
2020, 1, 22, 20, 34, 0, tzinfo=pytz.utc
)

parse_html_dt("Sep 10, 2019, 8:51:45 PM MSK", file_dt=None) == pytz.timezone(
assert parse_html_dt("Sep 10, 2019, 8:51:45 PM MSK", file_dt=None) == pytz.timezone(
"Europe/Moscow"
).localize(datetime(2019, 9, 10, 20, 51, 45))

Expand Down

0 comments on commit ccc1692

Please sign in to comment.