[Zope3-checkins] CVS: Zope3/src/zope/app/component/tests - service.py:1.2.6.1
Guido van Rossum
guido@python.org
Wed, 26 Feb 2003 16:44:11 -0500
Update of /cvs-repository/Zope3/src/zope/app/component/tests
In directory cvs.zope.org:/tmp/cvs-serv1550/src/zope/app/component/tests
Modified Files:
Tag: use-config-branch
service.py
Log Message:
Fix a few failing tests, for Tim.
=== Zope3/src/zope/app/component/tests/service.py 1.2 => 1.2.6.1 ===
--- Zope3/src/zope/app/component/tests/service.py:1.2 Wed Dec 25 09:12:46 2002
+++ Zope3/src/zope/app/component/tests/service.py Wed Feb 26 16:43:38 2003
@@ -18,6 +18,7 @@
__metaclass__ = type # All classes are new style when run with Python 2.2+
from zope.interface import Interface
+from zope.component.interfaces import IService
class IFooService(Interface):
@@ -26,7 +27,7 @@
class FooService:
- __implements__ = IFooService
+ __implements__ = IFooService, IService
def foo(self): return "foo here"
def foobar(self): return "foobarred"