diff --git a/.ci-scripts/utils/evaluate_designEvaluator_results.py b/.ci-scripts/utils/evaluate_designEvaluator_results.py
index ce3b6643ce1a6d904669e1e4a62a897136637c4f..9ab90bc02d344f9806c3c29885247653cc757075 100644
--- a/.ci-scripts/utils/evaluate_designEvaluator_results.py
+++ b/.ci-scripts/utils/evaluate_designEvaluator_results.py
@@ -21,9 +21,9 @@ def check_html_file(html_file):
     # Convert the HTML table to a Pandas DataFrame
     df = pd.read_html(StringIO(table))[0]
 
-    # Check the values in the fourth column (index 3)
+    # Check the values in the second column (index 1)
     has_deviation = False
-    for index, value in enumerate(df.iloc[:, 3]):
+    for index, value in enumerate(df.iloc[:, 1]):
         if not pd.isna(value) and value not in ['-nan', 'nan', 0]:
             first_column_value = df.iloc[index, 0]  # Get the first column value of this row
             print(f"Warning: Deviation in '{first_column_value}'.")