Skip to content

Commit

Permalink
[fix_phase_called_twice] Adopting the changes in flow_test file
Browse files Browse the repository at this point in the history
  • Loading branch information
NoaShapira8 committed Jul 3, 2024
1 parent ac97d56 commit 72d4236
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src_py/apiServer/experiment_flow_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ def print_test(in_str : str , enable = True):
api_server_instance.run_current_experiment_phase() # blocking until phase is completed
stats_train = api_server_instance.get_experiment_flow(experiment_name).generate_stats()

next_expertiment_phase_exist = api_server_instance.next_experiment_phase()
assert next_expertiment_phase_exist, "No next experiment phase found"
api_server_instance.next_experiment_phase()
assert api_server_instance.next_expertiment_phase_exist, "No next experiment phase found"
api_server_instance.run_current_experiment_phase() # blocking until phase is completed
stats_predict = api_server_instance.get_experiment_flow(experiment_name).generate_stats()

Expand Down

0 comments on commit 72d4236

Please sign in to comment.