Skip to content

Commit c9c4d87

Browse files
committed
add another test case
1 parent 697852d commit c9c4d87

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pandas/tests/arrays/test_integer.py

+1
Original file line numberDiff line numberDiff line change
@@ -618,6 +618,7 @@ def test_to_integer_array_float():
618618
@pytest.mark.parametrize(
619619
'bool_values, int_values, result_dtype',
620620
[([False, True], [0, 1], Int64Dtype),
621+
([False, True], [0, 1], 'Int64'),
621622
([False, True, np.nan], [0, 1, np.nan], Int64Dtype)])
622623
def test_to_integer_array_bool(bool_values, int_values, result_dtype):
623624
result = integer_array(bool_values, dtype=result_dtype())

0 commit comments

Comments
 (0)