Update of /cvs-repository/Products/CMFCore/tests
In directory cvs.zope.org:/tmp/cvs-serv5290

Modified Files:
      Tag: CMF-1_4-branch
        test_CMFCatalogAware.py 
Log Message:
Allow this test to work with Zope 2.6 + Python 2.1.


=== Products/CMFCore/tests/test_CMFCatalogAware.py 1.1.2.1 => 1.1.2.2 ===
--- Products/CMFCore/tests/test_CMFCatalogAware.py:1.1.2.1      Thu Apr 14 
15:53:07 2005
+++ Products/CMFCore/tests/test_CMFCatalogAware.py      Fri Apr 22 12:29:25 2005
@@ -80,9 +80,9 @@
 class TheClass(CMFCatalogAware, Folder):
     def __init__(self, id):
         self._setId(id)
-        self.notified = False
+        self.notified = 0
     def notifyModified(self):
-        self.notified = True
+        self.notified = 1
 
 
 class CMFCatalogAwareTests(unittest.TestCase):

_______________________________________________
CMF-checkins mailing list
[email protected]
http://mail.zope.org/mailman/listinfo/cmf-checkins

Reply via email to