Commit d9a3d4bd by Chris Dodge

Practice exams now should not have any icon associated with it

parent 35d12174
...@@ -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: {
......
...@@ -1645,7 +1645,7 @@ class ProctoredExamApiTests(LoggedInTestCase): ...@@ -1645,7 +1645,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
} }
), ),
...@@ -1716,7 +1716,7 @@ class ProctoredExamApiTests(LoggedInTestCase): ...@@ -1716,7 +1716,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
} }
), ),
...@@ -1769,7 +1769,7 @@ class ProctoredExamApiTests(LoggedInTestCase): ...@@ -1769,7 +1769,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
} }
......
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