[Zope3-checkins]
SVN: Zope3/branches/ZopeX3-3.0-broken/src/zope/app/generations/browser/ftests.py
Changed to use the global test manager, who has global grants.
Jim Fulton
jim at zope.com
Fri Aug 27 11:43:53 EDT 2004
Log message for revision 27296:
Changed to use the global test manager, who has global grants.
Really, only global users with global grants can use the application
controller. This needs some refinement in the future.
Changed:
U Zope3/branches/ZopeX3-3.0-broken/src/zope/app/generations/browser/ftests.py
-=-
Modified: Zope3/branches/ZopeX3-3.0-broken/src/zope/app/generations/browser/ftests.py
===================================================================
--- Zope3/branches/ZopeX3-3.0-broken/src/zope/app/generations/browser/ftests.py 2004-08-27 15:01:18 UTC (rev 27295)
+++ Zope3/branches/ZopeX3-3.0-broken/src/zope/app/generations/browser/ftests.py 2004-08-27 15:43:53 UTC (rev 27296)
@@ -36,7 +36,7 @@
ztapi.provideUtility(ISchemaManager, manager, appkey)
response = self.publish('/++etc++process/@@generations.html',
- basic='mgr:mgrpw')
+ basic='globalmgr:globalmgrpw')
body = response.getBody()
body = ' '.join(body.split())
expect = ('<td>zope.app.generations.demo</td> '
@@ -47,7 +47,7 @@
response = self.publish('/++etc++process/@@generations.html'
'?evolve-app-zope.app.generations.demo=evolve',
- basic='mgr:mgrpw')
+ basic='globalmgr:globalmgrpw')
body = response.getBody()
body = ' '.join(body.split())
expect = ('<td>zope.app.generations.demo</td> '
@@ -58,7 +58,7 @@
response = self.publish('/++etc++process/@@generations.html'
'?evolve-app-zope.app.generations.demo=evolve',
- basic='mgr:mgrpw')
+ basic='globalmgr:globalmgrpw')
body = response.getBody()
body = ' '.join(body.split())
expect = ('<td>zope.app.generations.demo</td> '
@@ -69,7 +69,7 @@
response = self.publish('/++etc++process/@@generations.html'
'?evolve-app-zope.app.generations.demo=evolve',
- basic='mgr:mgrpw')
+ basic='globalmgr:globalmgrpw')
body = response.getBody()
body = ' '.join(body.split())
expect = ('<td>zope.app.generations.demo</td> '
More information about the Zope3-Checkins
mailing list