Skip to content

Commit f573ca4

Browse files
committed
Fix variable assignment
1 parent cc5d779 commit f573ca4

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
@@ -2367,4 +2367,4 @@ def test_merge_cross_error_reporting(kwargs):
23672367
right = DataFrame({"b": [3, 4]})
23682368
msg = "Can not pass any merge columns when using cross as merge method"
23692369
with pytest.raises(MergeError, match=msg):
2370-
result = merge(left, right, how="cross", **kwargs)
2370+
merge(left, right, how="cross", **kwargs)

0 commit comments

Comments
 (0)