[Checkins] SVN: Products.GenericSetup/trunk/ Forward-port veritcal ws scrub from 1.6 branch.

Tres Seaver cvs-admin at zope.org
Wed Jan 23 22:18:39 UTC 2013


Log message for revision 129096:
  Forward-port veritcal ws scrub from 1.6 branch.

Changed:
  _U  Products.GenericSetup/trunk/
  U   Products.GenericSetup/trunk/Products/GenericSetup/PluginIndexes/tests/test_exportimport.py

-=-
Modified: Products.GenericSetup/trunk/Products/GenericSetup/PluginIndexes/tests/test_exportimport.py
===================================================================
--- Products.GenericSetup/trunk/Products/GenericSetup/PluginIndexes/tests/test_exportimport.py	2013-01-23 22:18:17 UTC (rev 129095)
+++ Products.GenericSetup/trunk/Products/GenericSetup/PluginIndexes/tests/test_exportimport.py	2013-01-23 22:18:39 UTC (rev 129096)
@@ -65,12 +65,10 @@
     def _getTargetClass(self):
         from Products.GenericSetup.PluginIndexes.exportimport \
                 import DateIndexNodeAdapter
-
         return DateIndexNodeAdapter
 
     def setUp(self):
         from Products.PluginIndexes.DateIndex.DateIndex import DateIndex
-
         self._obj = DateIndex('foo_date')
         self._XML = _DATE_XML
 
@@ -82,7 +80,6 @@
     def _getTargetClass(self):
         from Products.GenericSetup.PluginIndexes.exportimport \
                 import DateRangeIndexNodeAdapter
-
         return DateRangeIndexNodeAdapter
 
     def _populate(self, obj):
@@ -91,7 +88,6 @@
     def setUp(self):
         from Products.PluginIndexes.DateRangeIndex.DateRangeIndex \
                 import DateRangeIndex
-
         self._obj = DateRangeIndex('foo_daterange')
         self._XML = _DATERANGE_XML
 
@@ -103,7 +99,6 @@
     def _getTargetClass(self):
         from Products.GenericSetup.PluginIndexes.exportimport \
                 import PluggableIndexNodeAdapter
-
         return PluggableIndexNodeAdapter
 
     def _populate(self, obj):
@@ -111,7 +106,6 @@
 
     def setUp(self):
         from Products.PluginIndexes.FieldIndex.FieldIndex import FieldIndex
-
         self._obj = FieldIndex('foo_field')
         self._XML = _FIELD_XML
 
@@ -123,7 +117,6 @@
     def _getTargetClass(self):
         from Products.GenericSetup.PluginIndexes.exportimport \
                 import PluggableIndexNodeAdapter
-
         return PluggableIndexNodeAdapter
 
     def _populate(self, obj):
@@ -132,7 +125,6 @@
     def setUp(self):
         from Products.PluginIndexes.KeywordIndex.KeywordIndex \
                 import KeywordIndex
-
         self._obj = KeywordIndex('foo_keyword')
         self._XML = _KEYWORD_XML
 
@@ -144,12 +136,10 @@
     def _getTargetClass(self):
         from Products.GenericSetup.PluginIndexes.exportimport \
                 import PathIndexNodeAdapter
-
         return PathIndexNodeAdapter
 
     def setUp(self):
         from Products.PluginIndexes.PathIndex.PathIndex import PathIndex
-
         self._obj = PathIndex('foo_path')
         self._XML = _PATH_XML
 
@@ -161,7 +151,6 @@
     def _getTargetClass(self):
         from Products.GenericSetup.PluginIndexes.exportimport \
                 import FilteredSetNodeAdapter
-
         return FilteredSetNodeAdapter
 
     def _populate(self, obj):
@@ -170,7 +159,6 @@
     def setUp(self):
         from Products.PluginIndexes.TopicIndex.FilteredSet \
                 import PythonFilteredSet
-
         self._obj = PythonFilteredSet('bar', '')
         self._XML = _SET_XML
 
@@ -182,7 +170,6 @@
     def _getTargetClass(self):
         from Products.GenericSetup.PluginIndexes.exportimport \
                 import TopicIndexNodeAdapter
-
         return TopicIndexNodeAdapter
 
     def _populate(self, obj):
@@ -191,7 +178,6 @@
 
     def setUp(self):
         from Products.PluginIndexes.TopicIndex.TopicIndex import TopicIndex
-
         self._obj = TopicIndex('foo_topic')
         self._XML = _TOPIC_XML
 



More information about the checkins mailing list