summaryrefslogtreecommitdiff
path: root/service/test/support/test_helper.py
diff options
context:
space:
mode:
authormfrankie <mfrankie@eumfranckie.local>2016-05-19 13:29:49 +0200
committermfrankie <mfrankie@eumfranckie.local>2016-05-19 13:30:18 +0200
commit65c2b6d4bcb48517ad7a2e55adf1b94bcc1129fa (patch)
tree3f8931e36c9ffcab3ed2ef82b095d7b8b181a652 /service/test/support/test_helper.py
parent3fd43a0a3f45bfbb0ab6bde36ba7b353dbf535ef (diff)
issue #685 remove duplicated email recipients
Diffstat (limited to 'service/test/support/test_helper.py')
-rw-r--r--service/test/support/test_helper.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/service/test/support/test_helper.py b/service/test/support/test_helper.py
index 57f41a6e..b78da4cd 100644
--- a/service/test/support/test_helper.py
+++ b/service/test/support/test_helper.py
@@ -48,9 +48,9 @@ def mail_dict():
def duplicates_in_fields_mail_dict():
return {
'header': {
- 'to': ['to@pixelated.org', 'another@pixelated.org', 'third@pixelated.org'],
- 'cc': ['cc@pixelated.org', 'another@pixelated.org', 'third@pixelated.org'],
- 'bcc': ['bcc@pixelated.org', 'another@pixelated.org'],
+ 'to': ['to@pixelated.org', 'another@pixelated.org', 'third@pixelated.org', 'third@pixelated.org'],
+ 'cc': ['cc@pixelated.org', 'another@pixelated.org', 'third@pixelated.org', 'cc@pixelated.org'],
+ 'bcc': ['bcc@pixelated.org', 'another@pixelated.org', 'bcc@pixelated.org'],
'subject': 'Subject'
},
'body': 'Body',