fix: update platform test that directly creates proctor attempts

Student name field is gone. This test was providing a blank name so nothing
more than delete is needed.

MST-872
This commit is contained in:
Andy Shultz
2021-07-22 16:44:11 -04:00
parent 0fb2cd4dd3
commit 2e0393d098

View File

@@ -276,15 +276,15 @@ class TestAnalyticsBasic(ModuleStoreTestCase):
proctored_exam_id = create_exam(self.course_key, 'Test Content', 'Test Exam', 1)
ProctoredExamStudentAttempt.create_exam_attempt(
proctored_exam_id, self.users[0].id, '',
proctored_exam_id, self.users[0].id,
'Test Code 1', True, False, 'ad13'
)
ProctoredExamStudentAttempt.create_exam_attempt(
proctored_exam_id, self.users[1].id, '',
proctored_exam_id, self.users[1].id,
'Test Code 2', True, False, 'ad13'
)
ProctoredExamStudentAttempt.create_exam_attempt(
proctored_exam_id, self.users[2].id, '',
proctored_exam_id, self.users[2].id,
'Test Code 3', True, False, 'asd'
)