Skip to content

Commit 91b6848

Browse files
committed
TST: more fixes, xref #10981
1 parent 54f788a commit 91b6848

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/test_tseries.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ def _check(dtype):
483483
bins = np.array([6, 12, 20], dtype=np.int64)
484484
out = np.zeros((3, 4), dtype)
485485
counts = np.zeros(len(out), dtype=np.int64)
486-
labels = np.repeat(np.arange(3), np.diff(np.r_[0, bins]))
486+
labels = np.repeat(np.arange(3, dtype='int64'), np.diff(np.r_[0, bins]))
487487

488488
func = getattr(algos,'group_ohlc_%s' % dtype)
489489
func(out, counts, obj[:, None], labels)

0 commit comments

Comments
 (0)