@@ -68,10 +68,10 @@ def test_change_state(self):
6868 area = GroupFactory (type_id = 'area' )
6969 RoleFactory (name_id = 'ad' ,group = area ,person = Person .objects .get (user__username = 'ad' ))
7070
71- ames = GroupFactory (acronym = 'ames' ,state_id = 'proposed' ,list_email = 'ames-wg@ietf .org' ,parent = area )
71+ ames = GroupFactory (acronym = 'ames' ,state_id = 'proposed' ,list_email = 'ames-wg@example .org' ,parent = area )
7272 RoleFactory (name_id = 'ad' ,group = ames ,person = Person .objects .get (user__username = 'ad' ))
73- RoleFactory (name_id = 'chair' ,group = ames ,person__name = u'Ames Man' ,person__user__email = 'ameschairman@ietf .org' )
74- RoleFactory (name_id = 'secr' ,group = ames ,person__name = u'Secretary' ,person__user__email = 'amessecretary@ietf .org' )
73+ RoleFactory (name_id = 'chair' ,group = ames ,person__name = u'Ames Man' ,person__user__email = 'ameschairman@example .org' )
74+ RoleFactory (name_id = 'secr' ,group = ames ,person__name = u'Secretary' ,person__user__email = 'amessecretary@example .org' )
7575 CharterFactory (group = ames )
7676
7777 mars = GroupFactory (acronym = 'mars' ,parent = area )
@@ -130,10 +130,10 @@ def find_event(t):
130130 self .assertIn ("iesg@" , outbox [- 3 ]['To' ])
131131 self .assertIn ("A new IETF WG" , outbox [- 3 ].get_payload ())
132132 body = outbox [- 3 ].get_payload ()
133- for word in ["Chairs" , "Ames Man <ameschairman@ietf .org>" ,
134- "Secretaries" , "Secretary <amessecretary@ietf .org>" ,
135- "Assigned Area Director" , "Areað Irector <aread@ietf .org>" ,
136- "Mailing list" , "ames-wg@ietf .org" ,
133+ for word in ["Chairs" , "Ames Man <ameschairman@example .org>" ,
134+ "Secretaries" , "Secretary <amessecretary@example .org>" ,
135+ "Assigned Area Director" , "Areað Irector <aread@example .org>" ,
136+ "Mailing list" , "ames-wg@example .org" ,
137137 "Charter" , "Milestones" ]:
138138 self .assertIn (word , body )
139139
@@ -196,7 +196,7 @@ def test_already_open_charter_ballot(self):
196196 # does the unusual state sequence of: intrev --> extrev --> intrev
197197 area = GroupFactory (type_id = 'area' )
198198 RoleFactory (name_id = 'ad' ,group = area ,person = Person .objects .get (user__username = 'ad' ))
199- group = GroupFactory (acronym = 'ames' ,state_id = 'proposed' ,list_email = 'ames-wg@ietf .org' ,parent = area )
199+ group = GroupFactory (acronym = 'ames' ,state_id = 'proposed' ,list_email = 'ames-wg@example .org' ,parent = area )
200200 CharterFactory (group = group )
201201
202202 charter = group .charter
@@ -416,7 +416,7 @@ def test_submit_charter(self):
416416 "Windows line\n Mac line\n Unix line\n " + utf_8_snippet )
417417
418418 def test_submit_initial_charter (self ):
419- group = GroupFactory (type_id = 'wg' ,acronym = 'mars' ,list_email = 'mars-wg@ietf .org' )
419+ group = GroupFactory (type_id = 'wg' ,acronym = 'mars' ,list_email = 'mars-wg@example .org' )
420420
421421 url = urlreverse ('ietf.doc.views_charter.submit' , kwargs = dict (name = charter_name_for_group (group )))
422422 login_testing_unauthorized (self , "secretary" , url )
@@ -444,7 +444,7 @@ def test_submit_initial_charter(self):
444444 def test_edit_review_announcement_text (self ):
445445 area = GroupFactory (type_id = 'area' )
446446 RoleFactory (name_id = 'ad' ,group = area ,person = Person .objects .get (user__username = 'ad' ))
447- charter = CharterFactory (group__parent = area ,group__list_email = 'mars-wg@ietf .org' )
447+ charter = CharterFactory (group__parent = area ,group__list_email = 'mars-wg@example .org' )
448448 group = charter .group
449449
450450 url = urlreverse ('ietf.doc.views_charter.review_announcement_text' , kwargs = dict (name = charter .name ))
@@ -589,10 +589,10 @@ def test_edit_ballot_writeupnotes(self):
589589 def test_approve (self ):
590590 area = GroupFactory (type_id = 'area' )
591591 RoleFactory (name_id = 'ad' ,group = area ,person = Person .objects .get (user__username = 'ad' ))
592- charter = CharterFactory (group__acronym = 'ames' ,group__list_email = 'ames-wg@ietf .org' ,group__parent = area ,group__state_id = 'bof' )
592+ charter = CharterFactory (group__acronym = 'ames' ,group__list_email = 'ames-wg@example .org' ,group__parent = area ,group__state_id = 'bof' )
593593 group = charter .group
594- RoleFactory (name_id = 'chair' ,group = group ,person__name = u'Ames Man' ,person__user__email = 'ameschairman@ietf .org' )
595- RoleFactory (name_id = 'secr' ,group = group ,person__name = u'Secretary' ,person__user__email = 'amessecretary@ietf .org' )
594+ RoleFactory (name_id = 'chair' ,group = group ,person__name = u'Ames Man' ,person__user__email = 'ameschairman@example .org' )
595+ RoleFactory (name_id = 'secr' ,group = group ,person__name = u'Secretary' ,person__user__email = 'amessecretary@example .org' )
596596
597597 url = urlreverse ('ietf.doc.views_charter.approve' , kwargs = dict (name = charter .name ))
598598 login_testing_unauthorized (self , "secretary" , url )
@@ -665,12 +665,12 @@ def test_approve(self):
665665 #
666666 self .assertTrue ("WG Action" in outbox [1 ]['Subject' ])
667667 self .assertTrue ("ietf-announce" in outbox [1 ]['To' ])
668- self .assertTrue ("ames-wg@ietf .org" in outbox [1 ]['Cc' ])
668+ self .assertTrue ("ames-wg@example .org" in outbox [1 ]['Cc' ])
669669 body = outbox [1 ].get_payload ()
670- for word in ["Chairs" , "Ames Man <ameschairman@ietf .org>" ,
671- "Secretaries" , "Secretary <amessecretary@ietf .org>" ,
672- "Assigned Area Director" , "Areað Irector <aread@ietf .org>" ,
673- "Area Directors" , "Mailing list" , "ames-wg@ietf .org" ,
670+ for word in ["Chairs" , "Ames Man <ameschairman@example .org>" ,
671+ "Secretaries" , "Secretary <amessecretary@example .org>" ,
672+ "Assigned Area Director" , "Areað Irector <aread@example .org>" ,
673+ "Area Directors" , "Mailing list" , "ames-wg@example .org" ,
674674 "Charter" , "/doc/charter-ietf-ames/" , "Milestones" ]:
675675 self .assertIn (word , body )
676676
0 commit comments