[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/Caching/tests - testCacheName.py:1.2

Guido van Rossum guido@python.org
Wed, 13 Nov 2002 15:34:03 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/App/Caching/tests
In directory cvs.zope.org:/tmp/cvs-serv2318/lib/python/Zope/App/Caching/tests

Modified Files:
	testCacheName.py 
Log Message:
Since we want to support Windows, you can't have two files in the same
directory whose names only differ in case.  So the brand new class and
module TestServiceManager are hereby officially renamed to
TestingServiceManager.  (Jim's suggestion.)



=== Zope3/lib/python/Zope/App/Caching/tests/testCacheName.py 1.1 => 1.2 ===
--- Zope3/lib/python/Zope/App/Caching/tests/testCacheName.py:1.1	Mon Nov 11 15:57:20 2002
+++ Zope3/lib/python/Zope/App/Caching/tests/testCacheName.py	Wed Nov 13 15:34:03 2002
@@ -23,8 +23,8 @@
 
 from Zope.App.OFS.Services.ServiceManager.tests.PlacefulSetup \
      import PlacefulSetup
-from Zope.App.OFS.Services.ServiceManager.tests.TestServiceManager \
-     import TestServiceManager
+from Zope.App.OFS.Services.ServiceManager.tests.TestingServiceManager \
+     import TestingServiceManager
 
 from Zope.App.Caching.ICacheable import CacheName
 
@@ -39,7 +39,7 @@
     def setUp(self):
         PlacefulSetup.setUp(self)
         self.buildFolders()
-        sm = TestServiceManager()
+        sm = TestingServiceManager()
         self.rootFolder.setServiceManager(sm)
         sm.Caching = CachingServiceStub()