Skip to content

Commit

Permalink
Merge pull request #772 from linsword13/summary-foms
Browse files Browse the repository at this point in the history
Avoid hard-coding success string
  • Loading branch information
douglasjacobsen authored Nov 15, 2024
2 parents 6113835 + e0f09f1 commit 6e10bce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ramble/ramble/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -1915,7 +1915,7 @@ def is_numeric(value):
}
summary_foms.append(n_total_dict)

n_success = exp_status_list.count("SUCCESS")
n_success = exp_status_list.count(experiment_status.SUCCESS.name)
n_success_dict = {
"value": n_success,
"units": "repeats",
Expand Down

0 comments on commit 6e10bce

Please sign in to comment.