Skip to content

Commit

Permalink
Fix bug with freqs hypothesis strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
MetinSa committed Apr 29, 2024
1 parent 333b3f2 commit 57056e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/_strategies.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ def zodipy_models(draw: DrawFn, **static_params: dict[str, Any]) -> zodipy.Zodip
w = draw(weights(frequencies))
else:
frequencies = static_params.pop(
"freq", draw(freqs(min=min_freq, max=max_freq, extrapolate=extrapolate))
"freq", draw(freqs(min_freq=min_freq, max_freq=max_freq, extrapolate=extrapolate))
)
w = None

Expand Down

0 comments on commit 57056e2

Please sign in to comment.