Fixed test

This commit is contained in:
Ludovic Marcotte
2014-11-10 08:58:30 -05:00
parent 395a8ddcfe
commit 624af1c0fb

View File

@@ -683,12 +683,12 @@ class DAVCalendarAclTest(DAVAclTest):
if right == "r":
exp_event = event_template % {"class": icsClass,
"filename": filename,
"organizer_line": "ORGANIZER:mailto:nobody@somewhere.com\n",
"organizer_line": "ORGANIZER;CN=nobody@somewhere.com:mailto:nobody@somewhere.com\n",
"attendee_line": att_line}
else:
exp_event = event_template % {"class": icsClass,
"filename": filename,
"organizer_line": "ORGANIZER:mailto:someone@nowhere.com\n",
"organizer_line": "ORGANIZER;CN=someone@nowhere.com:mailto:someone@nowhere.com\n",
"attendee_line": att_line}
event = self._getEvent(event_class, True)
ics_diff = utilities.ics_compare(exp_event, event)