fix: use rsab mailtrigger for To in ballot position email (#7868)
This commit is contained in:
parent
1f6db0fef1
commit
73968dca5f
|
@ -230,6 +230,9 @@ class EditPositionTests(TestCase):
|
|||
r = self.client.post(url, dict(position="discuss", discuss="Test discuss text"))
|
||||
self.assertEqual(r.status_code, 403)
|
||||
|
||||
# N.B. This test needs to be rewritten to exercise all types of ballots (iesg, irsg, rsab)
|
||||
# and test against the output of the mailtriggers instead of looking for hardcoded values
|
||||
# in the To and CC results. See #7864
|
||||
def test_send_ballot_comment(self):
|
||||
ad = Person.objects.get(user__username="ad")
|
||||
draft = WgDraftFactory(ad=ad,group__acronym='mars')
|
||||
|
|
|
@ -323,6 +323,8 @@ def build_position_email(balloter, doc, pos):
|
|||
|
||||
if doc.stream_id == "irtf":
|
||||
addrs = gather_address_lists('irsg_ballot_saved',doc=doc)
|
||||
elif doc.stream_id == "editorial":
|
||||
addrs = gather_address_lists('rsab_ballot_saved',doc=doc)
|
||||
else:
|
||||
addrs = gather_address_lists('iesg_ballot_saved',doc=doc)
|
||||
|
||||
|
|
Loading…
Reference in a new issue