summaryrefslogtreecommitdiffstats
path: root/tests/test_ipalib/test_text.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_ipalib/test_text.py')
-rw-r--r--tests/test_ipalib/test_text.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test_ipalib/test_text.py b/tests/test_ipalib/test_text.py
index 5ffcb8b8..67fd0172 100644
--- a/tests/test_ipalib/test_text.py
+++ b/tests/test_ipalib/test_text.py
@@ -80,7 +80,7 @@ def test_gettext():
# language not associated with any real language, but the
# setlocale function demands the locale be a valid known locale,
# U.S. English is a reasonable choice.
- request.set_languages('en_US.UTF-8')
+ # request.set_languages('en_US.UTF-8')
# Tell gettext that our domain is 'ipa', that locale_dir is
# 'test_locale' (i.e. where to look for the message catalog)
@@ -117,7 +117,6 @@ def test_gettext():
# Reset the language and assure we don't get the test values
context.__dict__.clear()
- request.set_languages('fr_FR')
translated = unicode(localized)
assert(translated[0] != prefix)