diff --git a/lms/djangoapps/courseware/tests/test_views.py b/lms/djangoapps/courseware/tests/test_views.py index 217da31f53..59630b0feb 100644 --- a/lms/djangoapps/courseware/tests/test_views.py +++ b/lms/djangoapps/courseware/tests/test_views.py @@ -858,7 +858,8 @@ class ProgressPageTests(ModuleStoreTestCase): resp = views.progress(self.request, course_id=unicode(self.course.id)) self.assertContains(resp, u"View Certificate") - self.assertContains(resp, u"You can now view your certificate") + + self.assertContains(resp, u"You can now access your certificate") cert_url = certs_api.get_certificate_url( user_id=self.user.id, course_id=self.course.id, diff --git a/lms/templates/courseware/progress.html b/lms/templates/courseware/progress.html index 5ceac475e1..3ac56971f4 100644 --- a/lms/templates/courseware/progress.html +++ b/lms/templates/courseware/progress.html @@ -48,56 +48,52 @@ from django.utils.http import urlquote_plus