Skip to content

Commit

Permalink
Fix Typo in Bfill benchmark (#9087)
Browse files Browse the repository at this point in the history
Co-authored-by: Paul Ockenfuss <[email protected]>
  • Loading branch information
Ockenfuss and Paul Ockenfuss authored Jun 10, 2024
1 parent 247305f commit b83aef6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion asv_bench/benchmarks/dataarray_missing.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def time_ffill(self, shape, chunks, limit):
),
)
def time_bfill(self, shape, chunks, limit):
actual = self.da.ffill(dim="time", limit=limit)
actual = self.da.bfill(dim="time", limit=limit)

if chunks is not None:
actual = actual.compute()

0 comments on commit b83aef6

Please sign in to comment.