[Zope3-checkins] CVS: Zope3 - ut.py:1.6
Barry Warsaw
barry@wooz.org
Fri, 20 Dec 2002 14:36:29 -0500
Update of /cvs-repository/Zope3
In directory cvs.zope.org:/tmp/cvs-serv12269
Modified Files:
ut.py
Log Message:
Another style cleanup
=== Zope3/ut.py 1.5 => 1.6 ===
--- Zope3/ut.py:1.5 Fri Dec 20 14:35:40 2002
+++ Zope3/ut.py Fri Dec 20 14:36:29 2002
@@ -18,7 +18,7 @@
$Id$
"""
-from unittest import TestCase, TestSuite, main, makeSuite
+import unittest
#############################################################################
# If your tests change any global registries, then uncomment the
@@ -33,7 +33,7 @@
#############################################################################
-class Test(TestCase):
+class TestSomething(unittest.TestCase):
def setUp(self):
# Set up some preconditions
pass
@@ -54,7 +54,7 @@
def test_suite():
suite = unittest.TestSuite()
- suite.addTest(unttest.makeSuite(Test))
+ suite.addTest(unittest.makeSuite(TestSomething))
return suite