[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/ComponentArchitecture/tests - PlacelessSetup.py:1.3

Steve Alexander steve@cat-box.net
Thu, 5 Dec 2002 12:15:41 -0500


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

Modified Files:
	PlacelessSetup.py 
Log Message:
code formatting improvements.


=== Zope3/lib/python/Zope/App/ComponentArchitecture/tests/PlacelessSetup.py 1.2 => 1.3 ===
--- Zope3/lib/python/Zope/App/ComponentArchitecture/tests/PlacelessSetup.py:1.2	Tue Nov 19 18:15:14 2002
+++ Zope3/lib/python/Zope/App/ComponentArchitecture/tests/PlacelessSetup.py	Thu Dec  5 12:15:40 2002
@@ -13,7 +13,6 @@
 ##############################################################################
 """Unit test logic for setting up and tearing down basic infrastructure
 
-
 $Id$
 """
 
@@ -21,7 +20,6 @@
 from Zope.App.ComponentArchitecture.IInterfaceService import IInterfaceService
 from Zope.App.ComponentArchitecture.InterfaceService import interfaceService
 
-
 from Zope.Event.IEventService import IEventService
 from Zope.Event.GlobalEventService import eventService
 from Interface import Interface
@@ -30,9 +28,9 @@
 
     def setUp(self):
 
-        sm=getServiceManager(None)
-        defineService=sm.defineService
-        provideService=sm.provideService
+        sm = getServiceManager(None)
+        defineService = sm.defineService
+        provideService = sm.provideService
 
         defineService("Interfaces", IInterfaceService)
         provideService("Interfaces", interfaceService)