[Zope3-checkins] CVS: Zope3/src/zope/i18n/locales/tests -
test_locales.py:1.2
Jim Fulton
jim at zope.com
Fri Mar 5 17:09:59 EST 2004
Update of /cvs-repository/Zope3/src/zope/i18n/locales/tests
In directory cvs.zope.org:/tmp/cvs-serv15449/src/zope/i18n/locales/tests
Modified Files:
test_locales.py
Log Message:
Renamed interface methods:
isImplementedByInstancesOf to implementedBy
isImplementedBy to providedBy
=== Zope3/src/zope/i18n/locales/tests/test_locales.py 1.1 => 1.2 ===
--- Zope3/src/zope/i18n/locales/tests/test_locales.py:1.1 Thu Feb 5 17:52:32 2004
+++ Zope3/src/zope/i18n/locales/tests/test_locales.py Fri Mar 5 17:09:27 2004
@@ -37,7 +37,7 @@
self.locales = self._makeNewProvider()
def testInterfaceConformity(self):
- self.assert_(ILocaleProvider.isImplementedBy(self.locales))
+ self.assert_(ILocaleProvider.providedBy(self.locales))
def test_getLocale(self):
locale = self.locales.getLocale(None, None, None)
More information about the Zope3-Checkins
mailing list