Skip to content

Commit d1bfc53

Browse files
authored
changing test location
1 parent cab7b55 commit d1bfc53

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

pandas/tests/frame/methods/test_convert_dtypes.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -196,14 +196,3 @@ def test_convert_dtypes_from_arrow(self):
196196
result = df.convert_dtypes()
197197
expected = df.astype({"a": "string[python]"})
198198
tm.assert_frame_equal(result, expected)
199-
200-
def test_convert_dtypes_timezone_series(self):
201-
# GH#60237
202-
ser = pd.Series(pd.date_range(start='2020-01-01',
203-
periods=5,
204-
freq='h',
205-
tz='UTC'))
206-
ser = ser.astype("timestamp[ns, tz=UTC][pyarrow]")
207-
expected = ser
208-
result = ser.convert_dtypes(dtype_backend="pyarrow")
209-
tm.assert_series_equal(result, expected)

0 commit comments

Comments
 (0)