[CalendarServer-changes] [5893] CalendarServer/branches/new-store/txdav/propertystore/test/ test_xattr.py

source_changes at macosforge.org source_changes at macosforge.org
Wed Jul 14 00:54:02 PDT 2010


Revision: 5893
          http://trac.macosforge.org/projects/calendarserver/changeset/5893
Author:   glyph at apple.com
Date:     2010-07-14 00:54:02 -0700 (Wed, 14 Jul 2010)
Log Message:
-----------
construct xattr stores with a pathFactory, catch up with implementation

Modified Paths:
--------------
    CalendarServer/branches/new-store/txdav/propertystore/test/test_xattr.py

Modified: CalendarServer/branches/new-store/txdav/propertystore/test/test_xattr.py
===================================================================
--- CalendarServer/branches/new-store/txdav/propertystore/test/test_xattr.py	2010-07-14 07:53:36 UTC (rev 5892)
+++ CalendarServer/branches/new-store/txdav/propertystore/test/test_xattr.py	2010-07-14 07:54:02 UTC (rev 5893)
@@ -39,8 +39,8 @@
         tempDir.makedirs()
         tempFile = tempDir.child("test")
         tempFile.touch()
-        self.propertyStore = self.propertyStore1 = PropertyStore("user01", "user01", tempFile)
-        self.propertyStore2 = PropertyStore("user02", "user01", tempFile)
+        self.propertyStore = self.propertyStore1 = PropertyStore("user01", "user01", lambda : tempFile)
+        self.propertyStore2 = PropertyStore("user02", "user01", lambda : tempFile)
 
     def test_init(self):
         store = self.propertyStore
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20100714/a775af52/attachment.html>


More information about the calendarserver-changes mailing list