Skip to content

Commit e759d99

Browse files
committed
TST: 32-bit construction fix re GH8907
1 parent 2e59e42 commit e759d99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/test_index.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1890,7 +1890,7 @@ def test_time_loc(self): # GH8667
18901890
from datetime import time
18911891
from pandas.index import _SIZE_CUTOFF
18921892

1893-
ns = _SIZE_CUTOFF + np.array([-100, 100])
1893+
ns = _SIZE_CUTOFF + np.array([-100, 100],dtype=np.int64)
18941894
key = time(15, 11, 30)
18951895
start = key.hour * 3600 + key.minute * 60 + key.second
18961896
step = 24 * 3600

0 commit comments

Comments
 (0)