Skip to content

Commit 847dd16

Browse files
committed
Fix test by changing to list of single item
1 parent b76b189 commit 847dd16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/reshape/merge/test_merge.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2091,7 +2091,7 @@ def test_merge_suffix_type_error(col1, col2, suffixes):
20912091
"col1, col2, suffixes, msg",
20922092
[
20932093
("a", "a", ("a", "b", "c"), r"too many values to unpack \(expected 2\)"),
2094-
("a", "a", ("a"), r"not enough values to unpack \(expected 2, got 1\)"),
2094+
("a", "a", ["a"], r"not enough values to unpack \(expected 2, got 1\)"),
20952095
],
20962096
)
20972097
def test_merge_suffix_length_error(col1, col2, suffixes, msg):

0 commit comments

Comments
 (0)