Skip to content

Commit

Permalink
fix quantification assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewprzh committed Apr 24, 2024
1 parent affa122 commit 9106d46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/github/run_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ def run_quantification(args, config_dict, mode):
continue

ref_value = float(etalon_quality_dict[metric_name])
real_value = float(etalon_quality_dict[metric_name])
real_value = float(real_dict[metric_name])
err_code = check_value(ref_value, real_value, metric_name)
if err_code != 0:
exit_code = err_code
Expand Down

0 comments on commit 9106d46

Please sign in to comment.