From 9106d4691c7c449b9a70d7ed092bcd18d6d66638 Mon Sep 17 00:00:00 2001 From: Andrey Prjibelski Date: Wed, 24 Apr 2024 17:07:09 +0300 Subject: [PATCH] fix quantification assignment --- tests/github/run_pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/github/run_pipeline.py b/tests/github/run_pipeline.py index 4ee84b3e..c9c17b4f 100755 --- a/tests/github/run_pipeline.py +++ b/tests/github/run_pipeline.py @@ -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