Commit 8ec0f3f8 by Chris Dodge

Practice exams now should not have any icon associated with it

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