Commit 451ae3b2 by Peter Desjardins

Edited text strings in the default template for web certificates to remove…

Edited text strings in the default template for web certificates to remove wording specific to edx.org. Addresses DOC-2543.
parent ddc6b5ac
......@@ -278,7 +278,7 @@ class CertificatesViewsTests(ModuleStoreTestCase, EventTrackingTestCase):
)
# Test an item from user info
self.assertIn(
"{fullname}, you've earned a certificate!".format(fullname=self.user.profile.name),
"{fullname}, you earned a certificate!".format(fullname=self.user.profile.name),
response.content
)
# Test an item from social info
......@@ -293,8 +293,8 @@ class CertificatesViewsTests(ModuleStoreTestCase, EventTrackingTestCase):
# Test an item from certificate/org info
self.assertIn(
"a course of study offered by {partner_short_name}, "
"an online learning initiative of {partner_long_name} "
"through {platform_name}.".format(
"an online learning initiative of "
"{partner_long_name}.".format(
partner_short_name=short_org_name,
partner_long_name=long_org_name,
platform_name='Test Microsite'
......
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