Skip to content

Commit

Permalink
Practice exams now should not have any icon associated with it
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Dodge committed Oct 1, 2015
1 parent 0637dd4 commit 8ec0f3f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion edx_proctoring/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -975,7 +975,7 @@ def _check_eligibility_of_prerequisites(credit_state):
PRACTICE_STATUS_SUMMARY_MAP = {
'_default': {
'short_description': _('Ungraded Practice Exam'),
'suggested_icon': 'fa-pencil-square-o',
'suggested_icon': '',
'in_completed_state': False
},
ProctoredExamStudentAttemptStatus.submitted: {
Expand Down
6 changes: 3 additions & 3 deletions edx_proctoring/tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1419,7 +1419,7 @@ def test_attempt_status_summary(self, status, expected):
ProctoredExamStudentAttemptStatus.eligible, {
'status': ProctoredExamStudentAttemptStatus.eligible,
'short_description': 'Ungraded Practice Exam',
'suggested_icon': 'fa-pencil-square-o',
'suggested_icon': '',
'in_completed_state': False
}
),
Expand Down Expand Up @@ -1490,7 +1490,7 @@ def test_timed_exam_status_summary(self, expected):
ProctoredExamStudentAttemptStatus.eligible, {
'status': ProctoredExamStudentAttemptStatus.eligible,
'short_description': 'Ungraded Practice Exam',
'suggested_icon': 'fa-pencil-square-o',
'suggested_icon': '',
'in_completed_state': False
}
),
Expand Down Expand Up @@ -1543,7 +1543,7 @@ def test_practice_no_attempt(self):
expected = {
'status': ProctoredExamStudentAttemptStatus.eligible,
'short_description': 'Ungraded Practice Exam',
'suggested_icon': 'fa-pencil-square-o',
'suggested_icon': '',
'in_completed_state': False
}

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 8ec0f3f

Please sign in to comment.