misc: replace uses of pytz.utc with timezone.utc where it makes sense

This commit is contained in:
Dima Gerasimov 2023-06-09 03:04:54 +01:00 committed by karlicoss
parent c91534b966
commit c12224af74
9 changed files with 24 additions and 42 deletions

View file

@ -3,11 +3,9 @@ from my.tests.common import skip_if_not_karlicoss as pytestmark
# should make lazy loading the default..
from datetime import datetime
from datetime import datetime, timezone
import json
import pytz
def test_tweet() -> None:
from my.twitter.archive import Tweet
@ -45,7 +43,7 @@ def test_tweet() -> None:
"""
t = Tweet(json.loads(raw), screen_name='whatever')
assert t.permalink is not None
assert t.dt == datetime(year=2012, month=8, day=30, hour=7, minute=12, second=48, tzinfo=pytz.utc)
assert t.dt == datetime(year=2012, month=8, day=30, hour=7, minute=12, second=48, tzinfo=timezone.utc)
assert t.text == 'this is a test tweet'
assert t.tid == '2328934829084'
assert t.entities is not None