Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rwxr-xr-xtest/test1.py3
-rwxr-xr-xtest/test2.py3
3 files changed, 13 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 215c6c6..51dd184 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2006-10-29 Wouter Bolsterlee <wbolster@cvs.gnome.org>
+
+ * test/test1.py:
+ * test/test2.py:
+
+ Re-add locale settings to test files.
+
2006-10-29 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
* data/evince-ui.xml:
diff --git a/test/test1.py b/test/test1.py
index d3abed3..220cb83 100755
--- a/test/test1.py
+++ b/test/test1.py
@@ -2,6 +2,9 @@
# This test opens the interface and just clicks around a bit.
+import os
+os.environ['LANG']='en_US.UTF-8'
+
from dogtail.procedural import *
run('evince')
diff --git a/test/test2.py b/test/test2.py
index c0958c8..e42fca0 100755
--- a/test/test2.py
+++ b/test/test2.py
@@ -2,6 +2,9 @@
# This test opens a password encrypted file and tries to unlock it.
+import os
+os.environ['LANG']='en_US.UTF-8'
+
from dogtail.procedural import *
run('evince', arguments=' ./test-encrypt.pdf',)