diff --git a/ChangeLog.asciidoc b/ChangeLog.asciidoc index 48b82f7da..443f03e16 100644 --- a/ChangeLog.asciidoc +++ b/ChangeLog.asciidoc @@ -73,6 +73,7 @@ https://weechat.org/files/releasenotes/ReleaseNotes-devel.html[release notes] * relay: display the arrow before client id and protocol in raw buffer * ruby: fix load of scripts requiring "uri" (issue #433) * ruby: fix Ruby detection when pkg-config is not installed +* tests: fix locale used to execute tests [[1.3]] == Version 1.3 (2015-08-16) diff --git a/tests/tests.cpp b/tests/tests.cpp index 87ba79833..36c9e3103 100644 --- a/tests/tests.cpp +++ b/tests/tests.cpp @@ -125,7 +125,7 @@ main (int argc, char *argv[]) char *weechat_tests_args, *args, **weechat_argv; /* setup environment: default language, no specific timezone */ - setenv ("LANG", "C", 1); + setenv ("LC_ALL", "C", 1); setenv ("TZ", "", 1); /* build arguments for WeeChat */