Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWouter Bolsterlee <wbolster@cvs.gnome.org>2006-10-29 13:29:23 (GMT)
committer Wouter Bolsterlee <wbolster@src.gnome.org>2006-10-29 13:29:23 (GMT)
commit21dd925e74a1c0af20917915f674b1872556b08b (patch)
tree6b603d6fa6a1379200ebaa5f946380afa979f2be
parent44a82db00861feb97c7abe799c2314466fb4a072 (diff)
Re-add locale settings to test files.
2006-10-29 Wouter Bolsterlee <wbolster@cvs.gnome.org> * test/test1.py: * test/test2.py: Re-add locale settings to test files.
-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',)