Commit 4dc6baca by Chris Dodge

Practice exams now should not have any icon associated with it

parent 1b07b5bf
......@@ -975,7 +975,7 @@ STATUS_SUMMARY_MAP = {
PRACTICE_STATUS_SUMMARY_MAP = {
'_default': {
'short_description': _('Ungraded Practice Exam'),
'suggested_icon': 'fa-pencil-square-o',
'suggested_icon': '',
'in_completed_state': False
},
ProctoredExamStudentAttemptStatus.submitted: {
......
......@@ -1419,7 +1419,7 @@ class ProctoredExamApiTests(LoggedInTestCase):
ProctoredExamStudentAttemptStatus.eligible, {
'status': ProctoredExamStudentAttemptStatus.eligible,
'short_description': 'Ungraded Practice Exam',
'suggested_icon': 'fa-pencil-square-o',
'suggested_icon': '',
'in_completed_state': False
}
),
......@@ -1490,7 +1490,7 @@ class ProctoredExamApiTests(LoggedInTestCase):
ProctoredExamStudentAttemptStatus.eligible, {
'status': ProctoredExamStudentAttemptStatus.eligible,
'short_description': 'Ungraded Practice Exam',
'suggested_icon': 'fa-pencil-square-o',
'suggested_icon': '',
'in_completed_state': False
}
),
......@@ -1543,7 +1543,7 @@ class ProctoredExamApiTests(LoggedInTestCase):
expected = {
'status': ProctoredExamStudentAttemptStatus.eligible,
'short_description': 'Ungraded Practice Exam',
'suggested_icon': 'fa-pencil-square-o',
'suggested_icon': '',
'in_completed_state': False
}
......
......@@ -34,7 +34,7 @@ def load_requirements(*requirements_paths):
setup(
name='edx-proctoring',
version='0.9.13',
version='0.9.14',
description='Proctoring subsystem for Open edX',
long_description=open('README.md').read(),
author='edX',
......
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