[Zope3-checkins] CVS: Zope3/src/zope/xmlpickle/tests - test_xmlpickle.py:1.3

Jeremy Hylton jeremy@zope.com
Wed, 16 Apr 2003 18:12:40 -0400


Update of /cvs-repository/Zope3/src/zope/xmlpickle/tests
In directory cvs.zope.org:/tmp/cvs-serv23286

Modified Files:
	test_xmlpickle.py 
Log Message:
Cosmetics.



=== Zope3/src/zope/xmlpickle/tests/test_xmlpickle.py 1.2 => 1.3 ===
--- Zope3/src/zope/xmlpickle/tests/test_xmlpickle.py:1.2	Wed Dec 25 09:15:36 2002
+++ Zope3/src/zope/xmlpickle/tests/test_xmlpickle.py	Wed Apr 16 18:12:40 2003
@@ -11,9 +11,7 @@
 # FOR A PARTICULAR PURPOSE.
 #
 ##############################################################################
-"""XXX short summary goes here.
-
-XXX longer description goes here.
+"""Tests of xmlpickle package
 
 $Id$
 """
@@ -249,8 +247,6 @@
 class newSimple(Simple, object): pass
 class newWInitial(WInitial, object): pass
 
-
-
 class DictSub(dict):
     def __eq__(self, other):
         items = self.items()
@@ -262,11 +258,8 @@
     def __ne__(self, other):
         return not self.__eq__(other)
 
-
 def test_suite():
-    return TestSuite((
-        makeSuite(Test),
-        ))
+    return makeSuite(Test)
 
 if __name__=='__main__':
     main(defaultTest='test_suite')