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 f24b82c commit 808a810Copy full SHA for 808a810
pandas/tests/io/test_sql.py
@@ -1246,9 +1246,7 @@ def test_default_date_load(self):
1246
1247
# IMPORTANT - sqlite has no native date type, so shouldn't parse, but
1248
# MySQL SHOULD be converted.
1249
- # Now that GH 6415 is fixed, dates are automatically parsed to UTC
1250
- utc_dtype = pd.core.dtypes.dtypes.DatetimeTZDtypeType
1251
- assert issubclass(df.DateCol.dtype.type, utc_dtype)
+ assert issubclass(df.DateCol.dtype.type, np.datetime64)
1252
1253
def test_datetime_with_timezone(self):
1254
# edge case that converts postgresql datetime with time zone types
0 commit comments