diff --git a/lms/djangoapps/courseware/tests/test_credit_requirements.py b/lms/djangoapps/courseware/tests/test_credit_requirements.py
index 7130f95b8d..96d8fc3a17 100644
--- a/lms/djangoapps/courseware/tests/test_credit_requirements.py
+++ b/lms/djangoapps/courseware/tests/test_credit_requirements.py
@@ -112,7 +112,7 @@ class ProgressPageCreditRequirementsTest(ModuleStoreTestCase):
response,
"{}, you have met the requirements for credit in this course.".format(self.USER_FULL_NAME)
)
- self.assertContains(response, "Verified on {date}".format(date=self._now_formatted_date()))
+ self.assertContains(response, "Completed {date}".format(date=self._now_formatted_date()))
self.assertContains(response, "95%")
def test_credit_requirements_not_eligible(self):
diff --git a/lms/templates/courseware/progress.html b/lms/templates/courseware/progress.html
index 1f2806994f..9483e8efea 100644
--- a/lms/templates/courseware/progress.html
+++ b/lms/templates/courseware/progress.html
@@ -136,12 +136,10 @@ from django.utils.http import urlquote_plus
${_("Verification Failed" )}
%elif requirement['status'] == 'satisfied':
- % if requirement['namespace'] == 'reverification':
- Verified on ${get_time_display(requirement['status_date'], DEFAULT_SHORT_DATE_FORMAT, settings.TIME_ZONE)}
- % elif requirement['namespace'] == 'grade' and 'final_grade' in requirement['reason']:
+ % if requirement['namespace'] == 'grade' and 'final_grade' in requirement['reason']:
${int(requirement['reason']['final_grade'] * 100)}%
% else:
- Completed
+ ${_("Completed")} ${get_time_display(requirement['status_date'], DEFAULT_SHORT_DATE_FORMAT, settings.TIME_ZONE)}
% endif
%endif
%else: