Skip to content

Commit 9c2877a

Browse files
committed
fix missing parameter to the test to #25265
1 parent c80d4cd commit 9c2877a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/arrays/test_integer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ def test_to_integer_array_float():
616616

617617

618618
@pytest.mark.parametrize(
619-
'bool_values, int_values',
619+
'bool_values, int_values, result_dtype',
620620
[([False, True], [0, 1], Int64Dtype),
621621
([False, True, np.nan], [0, 1, np.nan], Int64Dtype)])
622622
def test_to_integer_array_bool(bool_values, int_values, result_dtype):

0 commit comments

Comments
 (0)