We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecac915 commit b35cd87Copy full SHA for b35cd87
tests/test_utils.py
@@ -90,11 +90,13 @@ def test_mixed_timezones_to_datetime_fails(self):
90
series = pd.Series(self.date_strings)
91
series = series.map(pd.Timestamp)
92
converted = pd.to_datetime(series)
93
+ self.assertIsNotNone(converted[0].tz)
94
95
def test_mixed_timezones_to_datetime(self):
96
97
98
converted = pd.to_datetime(series, utc=True)
99
100
i = 0
101
for dt in converted:
102
dt: datetime
0 commit comments