[CalendarServer-changes] [6361] CalendarServer/branches/users/glyph/more-deferreds-6/txdav/common/ datastore/test/test_util.py

source_changes at macosforge.org source_changes at macosforge.org
Thu Sep 23 18:08:52 PDT 2010


Revision: 6361
          http://trac.macosforge.org/projects/calendarserver/changeset/6361
Author:   glyph at apple.com
Date:     2010-09-23 18:08:51 -0700 (Thu, 23 Sep 2010)
Log Message:
-----------
a couple more calendar fixes

Modified Paths:
--------------
    CalendarServer/branches/users/glyph/more-deferreds-6/txdav/common/datastore/test/test_util.py

Modified: CalendarServer/branches/users/glyph/more-deferreds-6/txdav/common/datastore/test/test_util.py
===================================================================
--- CalendarServer/branches/users/glyph/more-deferreds-6/txdav/common/datastore/test/test_util.py	2010-09-24 01:07:09 UTC (rev 6360)
+++ CalendarServer/branches/users/glyph/more-deferreds-6/txdav/common/datastore/test/test_util.py	2010-09-24 01:08:51 UTC (rev 6361)
@@ -106,9 +106,9 @@
         self.addCleanup(vrfyTxn.commit)
         home = vrfyTxn.calendarHomeWithUID("home1")
         # The default calendar is still there.
-        self.assertNotIdentical(None, home.calendarWithName("calendar"))
+        self.assertNotIdentical(None, (yield home.calendarWithName("calendar")))
         # The migrated calendar isn't.
-        self.assertIdentical(None, home.calendarWithName("calendar_1"))
+        self.assertIdentical(None, (yield home.calendarWithName("calendar_1")))
 
 
     @inlineCallbacks
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20100923/451b20d5/attachment.html>


More information about the calendarserver-changes mailing list