Skip to content

Commit ad15f80

Browse files
spacespherejreback
authored andcommitted
TST: Fix wrong argument in TestDataFrameAlterAxes.test_set_index_dst (#20019)
1 parent f6ee9ac commit ad15f80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/frame/test_alter_axes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ def test_set_index_timezone(self):
301301

302302
def test_set_index_dst(self):
303303
di = pd.date_range('2006-10-29 00:00:00', periods=3,
304-
req='H', tz='US/Pacific')
304+
freq='H', tz='US/Pacific')
305305

306306
df = pd.DataFrame(data={'a': [0, 1, 2], 'b': [3, 4, 5]},
307307
index=di).reset_index()

0 commit comments

Comments
 (0)