aboutsummaryrefslogtreecommitdiff
path: root/cros_utils/email_sender_unittest.py
diff options
context:
space:
mode:
authorGeorge Burgess IV <gbiv@google.com>2021-09-01 10:54:58 -0700
committerCommit Bot <commit-bot@chromium.org>2021-09-02 17:21:09 +0000
commit338c8897fcefd242419ed42719df274a112d5b5d (patch)
treed612e55c8bbd78ad8cb91cd6a3a40b9b63ab9b1e /cros_utils/email_sender_unittest.py
parent7d81944cccf39425fb02325706c5b33b950790c4 (diff)
downloadtoolchain-utils-338c8897fcefd242419ed42719df274a112d5b5d.tar.gz
email_sender: s/sheriff/detective
Now that our backend for this supports detective as an alternate spelling of sheriff, we can migrate this. This includes forced auto-style-fixing from yapf. BUG=b:198446837 TEST=Unittests Change-Id: Ib371911a006d40149dfbf91cc5daf834066a451c Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/toolchain-utils/+/3137202 Reviewed-by: Manoj Gupta <manojgupta@chromium.org> Commit-Queue: George Burgess <gbiv@chromium.org> Tested-by: George Burgess <gbiv@chromium.org>
Diffstat (limited to 'cros_utils/email_sender_unittest.py')
-rwxr-xr-xcros_utils/email_sender_unittest.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/cros_utils/email_sender_unittest.py b/cros_utils/email_sender_unittest.py
index 73492196..ae41f143 100755
--- a/cros_utils/email_sender_unittest.py
+++ b/cros_utils/email_sender_unittest.py
@@ -69,7 +69,7 @@ class Test(unittest.TestCase):
'subject': 'foo',
'identifier': 'foo',
# non-list recipients
- 'well_known_recipients': 'sheriff',
+ 'well_known_recipients': 'detective',
'text_body': 'hi',
},
]
@@ -89,8 +89,8 @@ class Test(unittest.TestCase):
def actual_write_file(file_path):
nonlocal written_obj
- self.assertTrue(
- file_path.startswith(email_sender.X20_PATH + '/'), file_path)
+ self.assertTrue(file_path.startswith(email_sender.X20_PATH + '/'),
+ file_path)
f = io.StringIO()
yield f
written_obj = json.loads(f.getvalue())
@@ -99,7 +99,7 @@ class Test(unittest.TestCase):
email_sender.EmailSender().SendX20Email(
subject='hello',
identifier='world',
- well_known_recipients=['sheriff'],
+ well_known_recipients=['detective'],
direct_recipients=['gbiv@google.com'],
text_body='text',
html_body='html',
@@ -109,7 +109,7 @@ class Test(unittest.TestCase):
written_obj, {
'subject': 'hello',
'email_identifier': 'world',
- 'well_known_recipients': ['sheriff'],
+ 'well_known_recipients': ['detective'],
'direct_recipients': ['gbiv@google.com'],
'body': 'text',
'html_body': 'html',