|
1 | 1 | import json
|
2 | 2 | import logging
|
3 | 3 | import time
|
4 |
| -from datetime import datetime |
| 4 | +from datetime import datetime, timezone |
5 | 5 | from unittest import mock
|
6 | 6 |
|
7 | 7 | import orjson
|
@@ -162,21 +162,21 @@ def test_ts_filters(self, timescale):
|
162 | 162 | # max_ts query param -> to_ts timescale param
|
163 | 163 | self.client.post(self.custom_url_for('user.profile', user_name='iliekcomputers'),
|
164 | 164 | query_string={'max_ts': 1520946000})
|
165 |
| - req_call = mock.call(user, limit=25, to_ts=datetime.utcfromtimestamp(1520946000)) |
| 165 | + req_call = mock.call(user, limit=25, to_ts=datetime.fromtimestamp(1520946000, timezone.utc)) |
166 | 166 | timescale.assert_has_calls([req_call])
|
167 | 167 | timescale.reset_mock()
|
168 | 168 |
|
169 | 169 | # min_ts query param -> from_ts timescale param
|
170 | 170 | self.client.post(self.custom_url_for('user.profile', user_name='iliekcomputers'),
|
171 | 171 | query_string={'min_ts': 1520941000})
|
172 |
| - req_call = mock.call(user, limit=25, from_ts=datetime.utcfromtimestamp(1520941000)) |
| 172 | + req_call = mock.call(user, limit=25, from_ts=datetime.fromtimestamp(1520941000, timezone.utc)) |
173 | 173 | timescale.assert_has_calls([req_call])
|
174 | 174 | timescale.reset_mock()
|
175 | 175 |
|
176 | 176 | # If max_ts and min_ts set, only max_ts is used
|
177 | 177 | self.client.post(self.custom_url_for('user.profile', user_name='iliekcomputers'),
|
178 | 178 | query_string={'min_ts': 1520941000, 'max_ts': 1520946000})
|
179 |
| - req_call = mock.call(user, limit=25, to_ts=datetime.utcfromtimestamp(1520946000)) |
| 179 | + req_call = mock.call(user, limit=25, to_ts=datetime.fromtimestamp(1520946000, timezone.utc)) |
180 | 180 | timescale.assert_has_calls([req_call])
|
181 | 181 |
|
182 | 182 | @mock.patch('listenbrainz.webserver.timescale_connection._ts.fetch_listens')
|
|
0 commit comments