summaryrefslogtreecommitdiff
path: root/src/zope/tal/tests/test_htmltalparser.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/zope/tal/tests/test_htmltalparser.py')
-rw-r--r--src/zope/tal/tests/test_htmltalparser.py11
1 files changed, 2 insertions, 9 deletions
diff --git a/src/zope/tal/tests/test_htmltalparser.py b/src/zope/tal/tests/test_htmltalparser.py
index ba2770b..db5bd0c 100644
--- a/src/zope/tal/tests/test_htmltalparser.py
+++ b/src/zope/tal/tests/test_htmltalparser.py
@@ -16,7 +16,8 @@
import pprint
import unittest
-from zope.tal import htmltalparser, taldefs
+from zope.tal import htmltalparser
+from zope.tal import taldefs
class TestCaseBase(unittest.TestCase):
@@ -1057,11 +1058,3 @@ translated string</span>
('endScope', ()),
('rawtextColumn', ('</p>\n', 0))
])
-
-
-def test_suite():
- return unittest.TestSuite((
- unittest.makeSuite(HTMLTALParserTestCases),
- unittest.makeSuite(METALGeneratorTestCases),
- unittest.makeSuite(TALGeneratorTestCases),
- ))