[Zope3-checkins] CVS: Zope3/src/zope/app/services/translation/tests
- test_filters.py:1.3
Philipp von Weitershausen
cvs-admin at zope.org
Thu Nov 27 08:59:57 EST 2003
Update of /cvs-repository/Zope3/src/zope/app/services/translation/tests
In directory cvs.zope.org:/tmp/cvs-serv22470/services/translation/tests
Modified Files:
test_filters.py
Log Message:
Use super in test setUp methods. We can do this now because TestCase
(finally!) is a new-style class Python 2.3.
=== Zope3/src/zope/app/services/translation/tests/test_filters.py 1.2 => 1.3 ===
--- Zope3/src/zope/app/services/translation/tests/test_filters.py:1.2 Fri Jun 6 17:21:47 2003
+++ Zope3/src/zope/app/services/translation/tests/test_filters.py Thu Nov 27 08:59:26 2003
@@ -69,7 +69,7 @@
'''
def setUp(self):
- PlacelessSetup.setUp(self)
+ super(TestGettextExportImport, self).setUp()
# Setup the negotiator service registry entry
managerHandler('defineService', 'LanguageNegotiation', INegotiator)
provideService('LanguageNegotiation', negotiator, 'zope.Public')
More information about the Zope3-Checkins
mailing list