[Zope3-checkins] CVS: Zope3/src/zope/app/browser/tests - test_menu.py:1.8
Jim Fulton
jim@zope.com
Tue, 11 Mar 2003 11:11:59 -0500
Update of /cvs-repository/Zope3/src/zope/app/browser/tests
In directory cvs.zope.org:/tmp/cvs-serv10749/src/zope/app/browser/tests
Modified Files:
test_menu.py
Log Message:
Broke the module zope/app/interfaces/services/interfaces.py, into two
separate more-focussed modules:
zope/app/interfaces/services/adapter.py, and
zope/app/interfaces/services/view.py
and also moved some interfaces to:
zope/app/interfaces/services/service.py
and adjusted various dotted names to reflect the new locations.
=== Zope3/src/zope/app/browser/tests/test_menu.py 1.7 => 1.8 ===
--- Zope3/src/zope/app/browser/tests/test_menu.py:1.7 Mon Mar 3 18:16:06 2003
+++ Zope3/src/zope/app/browser/tests/test_menu.py Tue Mar 11 11:10:54 2003
@@ -33,7 +33,7 @@
from zope.security.checker import defineChecker, NamesChecker, CheckerPublic
from zope.security.proxy import ProxyFactory
from zope.app.interfaces.publisher.browser import IBrowserMenuService
-from zope.app.interfaces.services.interfaces import ISimpleService
+from zope.app.interfaces.services.service import ISimpleService
def d(title, action):
return {'action': action, 'title': title, 'description': ''}