Skip to content

Commit fa1b2e9

Browse files
committed
Dask series has no iloc.
1 parent 045ba24 commit fa1b2e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/benchmarks/test_arrow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def test_startswith(series_with_client):
3939
def test_filter(series_with_client):
4040
"""How fast can we filter the Series"""
4141
series, client = series_with_client
42-
name = series.iloc[0] # Get first name that appears
42+
name = series.head(1)[0] # Get first name that appears
4343
result = series[series == name]
4444
wait(result, client, 10 * 60)
4545

0 commit comments

Comments
 (0)