diff --git a/tests/test_console.py b/tests/test_console.py index 9f3b835..3b7d5f2 100644 --- a/tests/test_console.py +++ b/tests/test_console.py @@ -122,6 +122,7 @@ def test_timeline(mock_get, monkeypatch, capsys): 'id': '111111111111111111', 'account': { 'display_name': 'Frank Zappa 🎸', + 'last_status_at': '2017-04-12T15:53:18.174Z', 'acct': 'fz' }, 'created_at': '2017-04-12T15:53:18.174Z', @@ -164,6 +165,7 @@ def test_timeline_with_re(mock_get, monkeypatch, capsys): 'created_at': '2017-04-12T15:53:18.174Z', 'account': { 'display_name': 'Johnny Cash', + 'last_status_at': '2011-04-12', 'acct': 'jc' }, 'content': "

The computer can't tell you the emotional story. It can give you the exact mathematical design, but what's missing is the eyebrows.

", diff --git a/toot/entities.py b/toot/entities.py index 739b962..6ba5553 100644 --- a/toot/entities.py +++ b/toot/entities.py @@ -394,7 +394,7 @@ def _convert(field_type, value): return datetime.strptime(value, "%Y-%m-%dT%H:%M:%S.%f%z") if field_type == date: - return date.fromisoformat(value) + return datetime.fromisoformat(value.replace('Z', '+00:00')).date() if get_origin(field_type) == list: (inner_type,) = get_args(field_type)