Skip to content

Commit ec3521e

Browse files
committed
Fix ambiguous multiplication character in comment
1 parent 37b175a commit ec3521e

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
@@ -3118,7 +3118,7 @@ def test_merge_pyarrow_datetime_duplicates():
31183118
# This should work without raising ValueError
31193119
result = merge(df1, df2, on="time", how="left")
31203120

3121-
# Should return 6 rows (df1's 3 timestamps × 2 matches each from df2)
3121+
# Should return 6 rows (df1's 3 timestamps x 2 matches each from df2)
31223122
assert len(result) == 6
31233123
assert result["val1"].tolist() == [1, 1, 2, 2, 3, 3]
31243124
assert result["val2"].tolist() == [10, 20, 30, 40, 50, 60]

0 commit comments

Comments
 (0)