[Zope3-checkins] CVS: Zope3/src/transaction/tests -
test_SampleDataManager.py:1.1.2.3
Jeremy Hylton
jeremy at zope.com
Thu Feb 12 16:39:07 EST 2004
Update of /cvs-repository/Zope3/src/transaction/tests
In directory cvs.zope.org:/tmp/cvs-serv812
Modified Files:
Tag: zope3-zodb3-devel-branch
test_SampleDataManager.py
Log Message:
Simplify test_suite()
=== Zope3/src/transaction/tests/test_SampleDataManager.py 1.1.2.2 => 1.1.2.3 ===
--- Zope3/src/transaction/tests/test_SampleDataManager.py:1.1.2.2 Thu Jan 22 14:44:26 2004
+++ Zope3/src/transaction/tests/test_SampleDataManager.py Thu Feb 12 16:39:07 2004
@@ -405,10 +405,8 @@
def test_suite():
- import unittest
from doctest import DocTestSuite
- return unittest.TestSuite((
- DocTestSuite(),
- ))
+ return DocTestSuite()
-if __name__ == '__main__': unittest.main()
+if __name__ == '__main__':
+ unittest.main()
More information about the Zope3-Checkins
mailing list