Skip to content

Commit

Permalink
fix: use_state usage in the test
Browse files Browse the repository at this point in the history
  • Loading branch information
BillHuang2001 committed Nov 19, 2024
1 parent d0317c2 commit d064a55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def run_std_workflow_with_jit_problem():
for i in range(100):
state = workflow.step(state)

min_fitness, state = use_state(state, monitor.get_best_fitness)(state)
min_fitness, state = use_state(monitor.get_best_fitness)(state)
return min_fitness


Expand Down

0 comments on commit d064a55

Please sign in to comment.