We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07b772a commit 23c133dCopy full SHA for 23c133d
pandas/tests/series/test_apply.py
@@ -124,7 +124,7 @@ def test_apply_datetimetz(self):
124
125
# change dtype
126
result = s.apply(lambda x: x.hour)
127
- exp = pd.Series(list(range(24)) + [0], name='XX', dtype=np.int32)
+ exp = pd.Series(list(range(24)) + [0], name='XX', dtype=np.int64)
128
tm.assert_series_equal(result, exp)
129
130
# not vectorized
@@ -318,7 +318,7 @@ def test_map_datetimetz(self):
318
319
320
result = s.map(lambda x: x.hour)
321
322
323
324
with tm.assertRaises(NotImplementedError):
0 commit comments