Commit 48519bef by Andy Armstrong Committed by GitHub

Merge pull request #322 from edx/andya/text-improvements

Update messaging to mention MicroMasters
parents 992a9095 53b3e7f0
......@@ -7,7 +7,7 @@
</h3>
<p>
{% blocktrans %}
To be eligible to earn credit for this course, you must take and pass the proctoring review for this exam.
To be eligible for course credit or for a MicroMasters credential, you must pass the proctoring review for this exam.
{% endblocktrans %}
</p>
<button class="gated-sequence start-timed-exam action-primary" data-ajax-url="{{enter_exam_endpoint}}" data-exam-id="{{exam_id}}" data-attempt-proctored=true data-start-immediately=false>
......
......@@ -229,16 +229,16 @@ class ProctoredExamStudentViewTests(ProctoredExamTestCase):
('reverification', None, 'The following prerequisites are in a <strong>pending</strong> state', True),
('reverification', 'pending', 'The following prerequisites are in a <strong>pending</strong> state', True),
('reverification', 'failed', 'You did not satisfy the following prerequisites', True),
('reverification', 'satisfied', 'To be eligible to earn credit for this course', False),
('reverification', 'satisfied', 'To be eligible for course credit', False),
('reverification', 'declined', None, False),
('proctored_exam', None, 'The following prerequisites are in a <strong>pending</strong> state', True),
('proctored_exam', 'pending', 'The following prerequisites are in a <strong>pending</strong> state', True),
('proctored_exam', 'failed', 'You did not satisfy the following prerequisites', True),
('proctored_exam', 'satisfied', 'To be eligible to earn credit for this course', False),
('proctored_exam', 'satisfied', 'To be eligible for course credit', False),
('proctored_exam', 'declined', None, False),
('grade', 'failed', 'To be eligible to earn credit for this course', False),
('grade', 'failed', 'To be eligible for course credit', False),
# this is nonsense, but let's double check it
('grade', 'declined', 'To be eligible to earn credit for this course', False),
('grade', 'declined', 'To be eligible for course credit', False),
)
@ddt.unpack
def test_prereq_scenarios(self, namespace, req_status, expected_content, should_see_prereq):
......
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