[Zope3-checkins] CVS: Zope3/src/zope/app/utility - tests.py:1.4

Stephan Richter srichter at cosmos.phy.tufts.edu
Sat Mar 13 17:02:12 EST 2004


Update of /cvs-repository/Zope3/src/zope/app/utility
In directory cvs.zope.org:/tmp/cvs-serv11189/src/zope/app/utility

Modified Files:
	tests.py 
Log Message:


Move dependable interfaces to zope.app.dependable.interfaces after making
zope.app.dependable a package.




=== Zope3/src/zope/app/utility/tests.py 1.3 => 1.4 ===
--- Zope3/src/zope/app/utility/tests.py:1.3	Sat Mar 13 13:01:23 2004
+++ Zope3/src/zope/app/utility/tests.py	Sat Mar 13 17:02:11 2004
@@ -30,7 +30,7 @@
 from zope.app.registration.interfaces import ActiveStatus
 from zope.app.registration.interfaces import IRegistered
 from zope.app.utility.interfaces import ILocalUtility
-from zope.app.interfaces.dependable import IDependable
+from zope.app.dependable.interfaces import IDependable
 from zope.app.tests import setup
 
 class IFo(Interface): pass
@@ -69,16 +69,16 @@
         return self._usages
 
     def addDependent(self, location):
-        "See zope.app.interfaces.dependable.IDependable"
+        "See zope.app.dependable.interfaces.IDependable"
         if location not in self._dependents:
             self._dependents.append(location)
 
     def removeDependent(self, location):
-        "See zope.app.interfaces.dependable.IDependable"
+        "See zope.app.dependable.interfaces.IDependable"
         self._dependents.remove(location)
 
     def dependents(self):
-        "See zope.app.interfaces.dependable.IDependable"
+        "See zope.app.dependable.interfaces.IDependable"
         return self._dependents
 
 class TestUtilityService(placefulsetup.PlacefulSetup, unittest.TestCase):




More information about the Zope3-Checkins mailing list