Merge pull request #9416 from edx/cdodge/remove-external-id-from-report
alter columns in proctoring exam report
This commit is contained in:
@@ -1278,17 +1278,13 @@ def get_proctored_exam_results(request, course_id):
|
||||
get the proctored exam resultsreport for the particular course.
|
||||
"""
|
||||
query_features = [
|
||||
'created',
|
||||
'modified',
|
||||
'started_at',
|
||||
'exam_name',
|
||||
'user_email',
|
||||
'completed_at',
|
||||
'external_id',
|
||||
'exam_name',
|
||||
'allowed_time_limit_mins',
|
||||
'status',
|
||||
'attempt_code',
|
||||
'is_sample_attempt',
|
||||
'started_at',
|
||||
'completed_at',
|
||||
'status',
|
||||
]
|
||||
|
||||
course_key = CourseKey.from_string(course_id)
|
||||
|
||||
@@ -130,17 +130,13 @@ class TestAnalyticsBasic(ModuleStoreTestCase):
|
||||
|
||||
def test_get_student_exam_attempt_features(self):
|
||||
query_features = [
|
||||
'created',
|
||||
'modified',
|
||||
'started_at',
|
||||
'exam_name',
|
||||
'user_email',
|
||||
'completed_at',
|
||||
'external_id',
|
||||
'exam_name',
|
||||
'allowed_time_limit_mins',
|
||||
'status',
|
||||
'attempt_code',
|
||||
'is_sample_attempt',
|
||||
'started_at',
|
||||
'completed_at',
|
||||
'status',
|
||||
]
|
||||
|
||||
proctored_exam_id = create_exam(self.course_key, 'Test Content', 'Test Exam', 1)
|
||||
|
||||
Reference in New Issue
Block a user