Skip to content

Commit 000a93d

Browse files
committed
Fix test
1 parent 2c9042c commit 000a93d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/frame/methods/test_nlargest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,8 @@ def test_nlargest_duplicate_keep_all_ties(self):
182182
{
183183
"a": [5, 4, 4, 3, 3, 3, 3],
184184
"b": [10, 9, 8, 5, 50, 10, 20],
185-
}
185+
},
186+
index=[0, 1, 2, 4, 5, 6, 7],
186187
)
187188
tm.assert_frame_equal(result, expected)
188189

0 commit comments

Comments
 (0)