[Zope3-checkins] CVS: Zope3/src/zope/i18n/tests - test_xmllocales.py:1.3
Stephan Richter
srichter@cbu.edu
Mon, 6 Jan 2003 07:51:09 -0500
Update of /cvs-repository/Zope3/src/zope/i18n/tests
In directory cvs.zope.org:/tmp/cvs-serv28500/src/zope/i18n/tests
Modified Files:
test_xmllocales.py
Log Message:
Changed to not use super() based on Steve's suggestion.
=== Zope3/src/zope/i18n/tests/test_xmllocales.py 1.2 => 1.3 ===
--- Zope3/src/zope/i18n/tests/test_xmllocales.py:1.2 Mon Jan 6 04:24:45 2003
+++ Zope3/src/zope/i18n/tests/test_xmllocales.py Mon Jan 6 07:51:07 2003
@@ -21,12 +21,12 @@
from zope.i18n.locales import ICUXMLLocaleFactory
from zope.i18n.format import parseDateTimePattern, parseNumberPattern
-class LocaleXMLFileTestCase(TestCase, object):
+class LocaleXMLFileTestCase(TestCase):
"""This test verifies that every locale XML fiel can be loaded."""
def __init__(self, path):
self.__path = path
- super(LocaleXMLFileTestCase, self).__init__()
+ TestCase.__init__(self)
# For unittest.
def shortDescription(self):