Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
flomnes committed Jan 16, 2024
1 parent dd875ee commit c24bcae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/antares_test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ def launch_solver(solver_path, study_path, use_ortools = False, ortools_solver =
command.append('--named-mps-problems')

process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=None)
stdout, stderr = subprocess.communicate()
exit_code = subprocess.wait()
stdout, stderr = process.communicate()
exit_code = process.wait()

return (exit_code == 0)

Expand Down

0 comments on commit c24bcae

Please sign in to comment.