Skip to content

Commit

Permalink
update unsatisfactory exam email text to include IDV issues
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelRoytman committed Jul 11, 2019
1 parent 1a3642f commit d04d0b4
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion edx_proctoring/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
from __future__ import absolute_import

# Be sure to update the version number in edx_proctoring/package.json
__version__ = '2.0.5'
__version__ = '2.0.6'

default_app_config = 'edx_proctoring.apps.EdxProctoringConfig' # pylint: disable=invalid-name
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<p>
{% blocktrans %}
Hi {{ username }},
Hello {{ username }},
{% endblocktrans %}
</p>
<p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<p>
{% blocktrans %}
Hi {{ username }},
Hello {{ username }},
{% endblocktrans %}
</p>
<p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,18 @@

<p>
{% blocktrans %}
Hi {{ username }},
Hello {{ username }},
{% endblocktrans %}
</p>
<p>
{% blocktrans %}
Your proctored exam "{{ exam_name }}" in
<a href="{{ course_url }}">{{ course_name }}</a> was reviewed and the
team found one or more violations of the proctored exam rules. Examples
of behaviors that may result in a rules violation include browsing
the internet, using a phone, or getting help from another person. As a
result of the violation(s), you did not successfully meet the proctored
team identified one or more violations of the proctored exam rules. Examples
of issues that may result in a rules violation include browsing
the internet, blurry or missing photo identification, using a phone,
or getting help from another person. As a result of the identified issue(s),
you did not successfully meet the proctored
exam requirements.
{% endblocktrans %}
</p>
Expand Down
4 changes: 2 additions & 2 deletions edx_proctoring/tests/test_email.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def tearDown(self):
[
ProctoredExamStudentAttemptStatus.rejected,
'Proctoring Results',
'the team found one or more violations',
'the team identified one or more violations',
]
)
@ddt.unpack
Expand All @@ -92,7 +92,7 @@ def test_send_email(self, status, expected_subject, expected_message_string):

# Verify the body
actual_body = self._normalize_whitespace(mail.outbox[0].body)
self.assertIn('Hi tester,', actual_body)
self.assertIn('Hello tester,', actual_body)
self.assertIn('Your proctored exam "Test Exam"', actual_body)
self.assertIn(credit_state['course_name'], actual_body)
self.assertIn(expected_message_string, actual_body)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@edx/edx-proctoring",
"//": "Be sure to update the version number in edx_proctoring/__init__.py",
"//": "Note that the version format is slightly different than that of the Python version when using prereleases.",
"version": "2.0.4",
"version": "2.0.6",
"main": "edx_proctoring/static/index.js",
"repository": {
"type": "git",
Expand Down

0 comments on commit d04d0b4

Please sign in to comment.