[Zope3-checkins] CVS: Zope3/src/zope/app/catalog/ftests -
test_catalog.py:1.6
Stephan Richter
srichter at cosmos.phy.tufts.edu
Sun Dec 14 03:26:03 EST 2003
Update of /cvs-repository/Zope3/src/zope/app/catalog/ftests
In directory cvs.zope.org:/tmp/cvs-serv1651/src/zope/app/catalog/ftests
Modified Files:
test_catalog.py
Log Message:
I remember that we were too lazy after ZCMLgeddon to require the principal
and role ids to be Id fields, since it required many places to change.
While I was writing on the devel cookbook, I saw the metadirectives for the
security again and could not resist fixing it.
All tests pass now and Zope seems to run fine as well.
=== Zope3/src/zope/app/catalog/ftests/test_catalog.py 1.5 => 1.6 ===
--- Zope3/src/zope/app/catalog/ftests/test_catalog.py:1.5 Tue Aug 5 04:33:20 2003
+++ Zope3/src/zope/app/catalog/ftests/test_catalog.py Sun Dec 14 03:25:33 2003
@@ -171,7 +171,7 @@
self.assert_(len(res)==0)
res = cat.searchResults(fulltext='sample', dctitle='Zeroth File')
self.assert_(len(res)==0)
- res = cat.searchResults(dccreator='mgr', dctitle='Third File')
+ res = cat.searchResults(dccreator='zope.mgr', dctitle='Third File')
self.assert_(len(res)==3)
def test_suite():
More information about the Zope3-Checkins
mailing list