From d222d52563e6cecf08e22d0d2ae3127d426f8727 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Wed, 17 Feb 2010 10:15:35 +0000 Subject: Tests integration: force C locale * tests/integration/saml2/__init__.py: authentic now use 'system locale' by default, so force C locale to get english IHM string to make twill happy. --- tests/integration/saml2/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration/saml2/__init__.py b/tests/integration/saml2/__init__.py index 996faf3d..0080258f 100644 --- a/tests/integration/saml2/__init__.py +++ b/tests/integration/saml2/__init__.py @@ -32,6 +32,7 @@ LASSO_BUILDDIR = os.environ.get('LASSO_BUILDDIR') or \ CONFIG.get('LASSO_BUILDDIR') or \ os.path.realpath(os.path.join(os.path.dirname(__file__), "..", "..", "..")) +os.environ['LANG'] = 'C' os.environ['LD_LIBRARY_PATH'] = os.path.join(LASSO_BUILDDIR, "lasso", ".libs") + ":" + \ os.environ.get('LD_LIBRARY_PATH', '') os.environ['PYTHONPATH'] = os.path.join(LASSO_BUILDDIR, "bindings", "python") + \ -- cgit