diff options
Diffstat (limited to 'pykolab/tests/calendar.py')
-rw-r--r-- | pykolab/tests/calendar.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pykolab/tests/calendar.py b/pykolab/tests/calendar.py index c066b02..80f5d3d 100644 --- a/pykolab/tests/calendar.py +++ b/pykolab/tests/calendar.py @@ -136,8 +136,6 @@ class CalendarItem(object): return tpl_orig % self.__dict__ def create_items(conf, num=None, folder=None): - conf.log.debug(_("Creating %d Calendar events") %(num), level=3) - for item in TEST_ITEMS: if item['name'] == 'calendar': info = item @@ -145,6 +143,8 @@ def create_items(conf, num=None, folder=None): if num: info['number'] = int(num) + conf.log.debug(_("Creating %d Events") %(info['number']), level=3) + alloc_uids = [] if os.path.isfile('./share/tests/kcal-event.tpl'): |