Skip to content

Commit

Permalink
fix: base case for severity for cov
Browse files Browse the repository at this point in the history
  • Loading branch information
ilee2u committed Jul 28, 2023
1 parent d77a513 commit 24201f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion edx_exams/apps/lti/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def acs(request, lti_config_id):
if severity > SEVERITY_THRESHOLD:
update_attempt_status(attempt.id, ExamAttemptStatus.second_review_required)
success_msg = 'Termination Severity > 0.25, marking exam attempt for secondary review. '
elif severity <= SEVERITY_THRESHOLD:
else:
update_attempt_status(attempt.id, ExamAttemptStatus.verified)
success_msg = 'Termination Severity <= 0.25, marking exam attempt as verified. '
log.info(success_msg)
Expand Down

0 comments on commit 24201f0

Please sign in to comment.