We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 045ba24 commit fa1b2e9Copy full SHA for fa1b2e9
tests/benchmarks/test_arrow.py
@@ -39,7 +39,7 @@ def test_startswith(series_with_client):
39
def test_filter(series_with_client):
40
"""How fast can we filter the Series"""
41
series, client = series_with_client
42
- name = series.iloc[0] # Get first name that appears
+ name = series.head(1)[0] # Get first name that appears
43
result = series[series == name]
44
wait(result, client, 10 * 60)
45
0 commit comments