Skip to content

Commit 772998f

Browse files
committed
fix after pandas-dev#53418
1 parent a7e69ad commit 772998f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/frame/test_reductions.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1681,9 +1681,9 @@ class TestEmptyDataFrameReductions:
16811681
("prod", np.int8, 1, np.int_),
16821682
("sum", np.int64, 0, np.int64),
16831683
("prod", np.int64, 1, np.int64),
1684-
("sum", np.uint8, 0, np.int64),
1684+
("sum", np.uint8, 0, np.uint64),
16851685
("prod", np.uint8, 1, np.uint),
1686-
("sum", np.uint64, 0, np.int64),
1686+
("sum", np.uint64, 0, np.uint64),
16871687
("prod", np.uint64, 1, np.uint64),
16881688
("sum", np.float32, 0, np.float32),
16891689
("prod", np.float32, 1, np.float32),

0 commit comments

Comments
 (0)