summaryrefslogtreecommitdiff
path: root/src/zope/i18n/tests/test_zcml.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/zope/i18n/tests/test_zcml.py')
-rw-r--r--src/zope/i18n/tests/test_zcml.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/zope/i18n/tests/test_zcml.py b/src/zope/i18n/tests/test_zcml.py
index 52ee437..cd3d2b4 100644
--- a/src/zope/i18n/tests/test_zcml.py
+++ b/src/zope/i18n/tests/test_zcml.py
@@ -25,10 +25,10 @@ from zope.component.testing import PlacelessSetup
from zope.configuration import xmlconfig
import zope.i18n.tests
+from zope.i18n._compat import text_type
from zope.i18n.interfaces import ITranslationDomain
from zope.i18n import config
-text_type = str if bytes is not str else unicode
template = """\
<configure
@@ -37,6 +37,7 @@ template = """\
%s
</configure>"""
+
class DirectivesTest(PlacelessSetup, unittest.TestCase):
# This test suite needs the [zcml] and [compile] extra dependencies
@@ -156,7 +157,8 @@ class DirectivesTest(PlacelessSetup, unittest.TestCase):
xmlconfig.string(
template % '''
<configure package="zope.i18n.tests">
- <i18n:registerTranslations directory="locale3" domain="zope-i18n" />
+ <i18n:registerTranslations directory="locale3"
+ domain="zope-i18n" />
</configure>
''', self.context)
path = os.path.join(os.path.dirname(zope.i18n.tests.__file__),