Commit b353ec2b by chrisndodge

Merge pull request #158 from edx/release-rebase

Release rebase
parents 0de4b3e9 4e689215
......@@ -232,7 +232,7 @@ class SoftwareSecureBackendProvider(ProctoringBackendProvider):
# only 'Clean' and 'Rules Violation' could as passing
status = (
ProctoredExamStudentAttemptStatus.verified
if review_status in ['Clean', 'Suspicious']
if review_status in ['Clean', 'Rules Violation']
else ProctoredExamStudentAttemptStatus.rejected
)
......
......@@ -245,8 +245,8 @@ class SoftwareSecureTests(TestCase):
@ddt.data(
('Clean', 'satisfied'),
('Suspicious', 'satisfied'),
('Rules Violation', 'failed'),
('Rules Violation', 'satisfied'),
('Suspicious', 'failed'),
('Not Reviewed', 'failed'),
)
@ddt.unpack
......
......@@ -97,7 +97,6 @@ class ProctoredExamApiTests(LoggedInTestCase):
# Messages for get_student_view
self.start_an_exam_msg = 'This exam is proctored'
self.timed_exam_msg = '{exam_name} is a Timed Exam'
self.exam_time_expired_msg = 'You did not complete the exam in the allotted time'
self.exam_time_error_msg = 'There was a problem with your proctoring session'
self.chose_proctored_exam_msg = 'Follow these steps to set up and start your proctored exam'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment