Skip to content

Commit 98af575

Browse files
TST: fixed test expectation for 32 bit systems
1 parent 3508a9f commit 98af575

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/io/parser/common/test_ints.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def test_integer_overflow_with_user_dtype(all_parsers, any_int_dtype, getval, ex
157157
(expected == _raises_any_integer_cast_exception)
158158
and (parser.engine == "python")
159159
and (not is_extension_array_dtype(dtype))
160-
and (dtype < np.dtype("int64"))
160+
and (dtype < np.dtype("int"))
161161
and not (is_unsigned_integer_dtype(dtype) and (val < 0))
162162
):
163163
expected = tm.assert_produces_warning(

0 commit comments

Comments
 (0)