Skip to content

Commit 15f843a

Browse files
authored
TST: 32bit dtype compat test_groupby_dropna (#37623)
1 parent ff1cd78 commit 15f843a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/groupby/test_groupby_dropna.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ def test_groupby_nan_included():
343343
df = pd.DataFrame(data)
344344
grouped = df.groupby("group", dropna=False)
345345
result = grouped.indices
346-
dtype = "int64"
346+
dtype = np.intp
347347
expected = {
348348
"g1": np.array([0, 2], dtype=dtype),
349349
"g2": np.array([3], dtype=dtype),

0 commit comments

Comments
 (0)