Skip to content

Commit 016c64e

Browse files
clean up test
1 parent bf69fad commit 016c64e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pandas/tests/frame/methods/test_combine_first.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -399,13 +399,13 @@ def test_combine_first_string_dtype_only_na(self, nullable_string_dtype):
399399
tm.assert_frame_equal(result, expected)
400400

401401
@pytest.mark.parametrize(
402-
"wide_val, dtype, EAdtype",
402+
"wide_val, dtype",
403403
(
404-
(1666880195890293744, "uint64", "UInt64"),
405-
(-1666880195890293744, "int64", "Int64"),
404+
(1666880195890293744, "uint64"),
405+
(-1666880195890293744, "int64"),
406406
),
407407
)
408-
def test_combine_first_preserve_precision(self, wide_val, dtype, EAdtype):
408+
def test_combine_first_preserve_precision(self, wide_val, dtype):
409409
# GH#60128
410410
df1 = DataFrame({"A": [wide_val, 5]}, dtype=dtype)
411411
df2 = DataFrame({"A": [6, 7, wide_val]}, dtype=dtype)

0 commit comments

Comments
 (0)