Skip to content

Commit d65980e

Browse files
committed
typo
1 parent e5c61fc commit d65980e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pandas/tests/dtypes/test_common.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -605,10 +605,10 @@ def test__get_dtype_fails(input_param):
605605
(pd.DatetimeIndex([1, 2]), np.datetime64),
606606
(pd.DatetimeIndex([1, 2]).dtype, np.datetime64),
607607
('<M8[ns]', np.datetime64),
608-
(pd.DatetimeIndex([1, 2], tz='Europe/London'), pd.Timestmap),
608+
(pd.DatetimeIndex([1, 2], tz='Europe/London'), pd.Timestamp),
609609
(pd.DatetimeIndex([1, 2], tz='Europe/London').dtype,
610-
pd.Timestmap),
611-
('datetime64[ns, Europe/London]', pd.Timestmap),
610+
pd.Timestamp),
611+
('datetime64[ns, Europe/London]', pd.Timestamp),
612612
(pd.SparseSeries([1, 2], dtype='int32'), np.int32),
613613
(pd.SparseSeries([1, 2], dtype='int32').dtype, np.int32),
614614
(PeriodDtype(freq='D'), pd.Period),

0 commit comments

Comments
 (0)