Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
HDembinski committed Sep 15, 2024
1 parent a0c0781 commit 59e8285
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_draw.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,8 @@ def __call__(self, a, b):
ui = out.children[1]
header, parameters = ui.children
fit_button, update_button, reset_button, algo_select = header.children
assert parameters.children[0].slider.max == np.finfo(float).max
assert parameters.children[1].slider.min == -np.finfo(float).max
assert parameters.children[0].slider.max == 1
assert parameters.children[1].slider.min == -1
with plot.assert_call():
fit_button.click()
assert_allclose(m.values, (100, -100), atol=1e-5)
Expand Down

0 comments on commit 59e8285

Please sign in to comment.