Commit 045a67aa by chrisndodge

Merge pull request #9416 from edx/cdodge/remove-external-id-from-report

alter columns in proctoring exam report
parents 68da716d 110dbc04
......@@ -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)
......
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