From 5d1a6508d0d277e4b421f7017ecbc532957fd503 Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Fri, 9 Mar 2018 00:43:35 -0500 Subject: [PATCH] (tests) Fix variable declaration --- Tests/Integration/test-caldav-scheduling.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Tests/Integration/test-caldav-scheduling.py b/Tests/Integration/test-caldav-scheduling.py index a458e815a..9ca104e44 100755 --- a/Tests/Integration/test-caldav-scheduling.py +++ b/Tests/Integration/test-caldav-scheduling.py @@ -635,6 +635,7 @@ class CalDAVSchedulingTest(unittest.TestCase): # fetch the organizer's event org_ev = self._getEvent(self.client, "%s%s" % (self.user_calendar, ics_name)) + org_ev_exception = False for ev in org_ev.vevent_list: try: if (ev.recurrence_id.value): @@ -731,6 +732,7 @@ class CalDAVSchedulingTest(unittest.TestCase): # needs-action in master event # declined in the new exception created by the exdate above org_ev=self._getEvent(self.client, "%s%s" % (self.user_calendar, ics_name)) + org_ev_exception = False for ev in org_ev.vevent_list: try: if (ev.recurrence_id.value == attendee_exdate[0]):