Skip to content

Commit 7d079ac

Browse files
authored
fixing line length in test file
1 parent b578b6f commit 7d079ac

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

pandas/tests/frame/methods/test_convert_dtypes.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,8 +199,11 @@ def test_convert_dtypes_from_arrow(self):
199199

200200
def test_convert_dtypes_timezone_series(self):
201201
# GH#60237
202-
ser = pd.Series(pd.date_range(start='2020-01-01', periods=5, freq='h', tz='UTC'))
202+
ser = pd.Series(pd.date_range(start='2020-01-01',
203+
periods=5,
204+
freq='h',
205+
tz='UTC'))
203206
ser = ser.astype("timestamp[ns, tz=UTC][pyarrow]")
204207
expected = ser
205208
result = ser.convert_dtypes(dtype_backend="pyarrow")
206-
tm.assert_series_equal(result, expected)
209+
tm.assert_series_equal(result, expected)

0 commit comments

Comments
 (0)