Skip to content

Commit

Permalink
Fix fillna error in CoW chain
Browse files Browse the repository at this point in the history
  • Loading branch information
phofl committed Sep 21, 2023
1 parent 565617b commit 77adb1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/benchmarks/test_dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def test_dataframe_cow_chain(small_client):
result = (
df.rename(columns={1: 1000})
.replace("x", "xxx")
.fillna(100)
.fillna({i: 100 for i in range(10, 70)})
.astype({50: "float"})
.loc[:, slice(2, 100)]
)
Expand Down

0 comments on commit 77adb1b

Please sign in to comment.