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

alter columns in proctoring exam report
This commit is contained in:
chrisndodge
2015-08-21 07:29:00 -04:00
2 changed files with 8 additions and 16 deletions

View File

@@ -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)

View File

@@ -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)