[Zope3-checkins] SVN: Zope3/trunk/dut.py use list, not tuple, so that forgetting the comma won't lead to weird

Philipp von Weitershausen philikon at philikon.de
Sun Mar 19 05:54:18 EST 2006


Log message for revision 66067:
  use list, not tuple, so that forgetting the comma won't lead to weird
  errors.
  

Changed:
  U   Zope3/trunk/dut.py

-=-
Modified: Zope3/trunk/dut.py
===================================================================
--- Zope3/trunk/dut.py	2006-03-18 19:57:54 UTC (rev 66066)
+++ Zope3/trunk/dut.py	2006-03-19 10:54:17 UTC (rev 66067)
@@ -25,7 +25,7 @@
     """
 
 def test_suite():
-    return unittest.TestSuite((
+    return unittest.TestSuite([
 
         # Uncomment the following line if there are tests in this module:
         # DocTestSuite(),
@@ -34,7 +34,7 @@
         # sources.  Pass the dotted name of the module:
         # DocTestSuite('mypackage.mymodule'),
         
-        ))
+        ])
 
 if __name__ == '__main__':
     unittest.main(defaultTest='test_suite')



More information about the Zope3-Checkins mailing list