Skip to content

Commit 1f76d21

Browse files
committed
Fixed flake issue
1 parent a1b9385 commit 1f76d21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/indexing/multiindex/test_multiindex.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def test_combine_first_with_nan_index():
106106
df_combined = df.combine_first(pd.DataFrame({"col": s}))
107107
mi_expected = pd.MultiIndex.from_arrays([
108108
["a", "a", "a", "b", "b", "b", "b", "c", "c", "d", np.nan],
109-
[1, 1, 4, 1, 1, 2, 5, 1, 3, 1, 6,]
109+
[1, 1, 4, 1, 1, 2, 5, 1, 3, 1, 6]
110110
], names=["a", "b"])
111111
assert (df_combined.index == mi_expected).all()
112112
exp_col = np.asarray(

0 commit comments

Comments
 (0)