Skip to content

Commit d2f132d

Browse files
committed
var name
1 parent e52ea9b commit d2f132d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

eval_protocol/pytest/evaluation_test.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -465,14 +465,14 @@ async def _execute_with_semaphore(row):
465465
passed = None
466466

467467
if threshold is not None:
468-
success_passed, std_passed = True, True
468+
success_passed, standard_error_passed = True, True
469469

470470
success_passed = agg_score >= threshold.success
471471

472472
if threshold.standard_error is not None:
473-
std_passed = standard_error <= threshold.standard_error
473+
standard_error_passed = standard_error <= threshold.standard_error
474474

475-
passed = success_passed and std_passed
475+
passed = success_passed and standard_error_passed
476476

477477
# Update eval metadata passed field for all results
478478
for result in all_results:

0 commit comments

Comments
 (0)