Commit 53b3e7f0 by Andy Armstrong

Update messaging to mention MicroMasters

TNL-6113
parent 992a9095
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
</h3> </h3>
<p> <p>
{% blocktrans %} {% 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 %} {% endblocktrans %}
</p> </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> <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): ...@@ -229,16 +229,16 @@ class ProctoredExamStudentViewTests(ProctoredExamTestCase):
('reverification', None, 'The following prerequisites are in a <strong>pending</strong> state', True), ('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', 'pending', 'The following prerequisites are in a <strong>pending</strong> state', True),
('reverification', 'failed', 'You did not satisfy the following prerequisites', 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), ('reverification', 'declined', None, False),
('proctored_exam', None, 'The following prerequisites are in a <strong>pending</strong> state', True), ('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', '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', '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), ('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 # 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 @ddt.unpack
def test_prereq_scenarios(self, namespace, req_status, expected_content, should_see_prereq): 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