Skip to content

Commit 1a9741c

Browse files
committed
fixing test case for 32bit build
1 parent d2731d2 commit 1a9741c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/libs/test_hashtable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ def test_get_labels_groupby_for_Int64():
162162
arr, unique = table.get_labels_groupby(vals)
163163
expected_arr = np.array([0, 1, -1, 1, 0, -1], dtype=np.int64)
164164
expected_unique = np.array([1, 2], dtype=np.int64)
165-
tm.assert_numpy_array_equal(arr, expected_arr)
165+
tm.assert_numpy_array_equal(arr.astype(np.int64), expected_arr)
166166
tm.assert_numpy_array_equal(unique, expected_unique)
167167

168168

0 commit comments

Comments
 (0)