[Zope3-checkins] CVS: Zope3/src/zope/app/fssync/tests - test_fsdirective.py:1.4 test_fsregistry.py:1.4

Sidnei da Silva sidnei at x3ng.com.br
Mon Oct 6 18:09:23 EDT 2003


Update of /cvs-repository/Zope3/src/zope/app/fssync/tests
In directory cvs.zope.org:/tmp/cvs-serv25957/src/zope/app/fssync/tests

Modified Files:
	test_fsdirective.py test_fsregistry.py 
Log Message:
Whitespace. Lots of it

=== Zope3/src/zope/app/fssync/tests/test_fsdirective.py 1.3 => 1.4 ===
--- Zope3/src/zope/app/fssync/tests/test_fsdirective.py:1.3	Fri Aug  1 19:31:50 2003
+++ Zope3/src/zope/app/fssync/tests/test_fsdirective.py	Mon Oct  6 18:08:52 2003
@@ -38,7 +38,7 @@
     def testFSDirectiveDefaultAdapter(self):
         self.context = xmlconfig.file("fssync.zcml", zope.app.fssync.tests)
         self.assertEqual(getSynchronizer(C1()).__class__, CDefaultAdapter)
-        
+
     def testFSDirectiveDuplicate(self):
         self.assertRaises(ConfigurationConflictError, xmlconfig.file,
                           "fssync_duplicate.zcml", zope.app.fssync.tests)


=== Zope3/src/zope/app/fssync/tests/test_fsregistry.py 1.3 => 1.4 ===
--- Zope3/src/zope/app/fssync/tests/test_fsregistry.py:1.3	Sun Aug 17 02:06:38 2003
+++ Zope3/src/zope/app/fssync/tests/test_fsregistry.py	Mon Oct  6 18:08:52 2003
@@ -31,7 +31,7 @@
     """Test Interface for FSRegistry Instance.
     """
 
-    def testInterfaceVerification(self):        
+    def testInterfaceVerification(self):
         verifyObject(IGlobalFSSyncService, fsRegistry)
 
     def testFSRegistry(self):
@@ -45,7 +45,7 @@
         fac = getSynchronizer(cl)
         self.assertEqual(fac.__class__, CFileAdapter)
         self.assertEqual(fac.getBody(), C1.__doc__)
-        
+
         provideSynchronizer(C2, CDirAdapter)
         fac = getSynchronizer(C2())
         self.assertEqual(fac.__class__, CDirAdapter)
@@ -65,7 +65,7 @@
         """Test for duplication in registring the same class in
         to the Registry.
         """
-        provideSynchronizer(C2, CFileAdapter)       
+        provideSynchronizer(C2, CFileAdapter)
         #Try to change the adapter for same class should
         #throw a duplication error
         self.assertRaises(DuplicationError,




More information about the Zope3-Checkins mailing list