From: Wouter Bolsterlee Date: Sun, 29 Oct 2006 13:29:23 +0000 (+0000) Subject: Re-add locale settings to test files. X-Git-Tag: EVINCE_0_7_0~86 X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=commitdiff_plain;h=21dd925e74a1c0af20917915f674b1872556b08b;p=evince.git Re-add locale settings to test files. 2006-10-29 Wouter Bolsterlee * test/test1.py: * test/test2.py: Re-add locale settings to test files. --- diff --git a/ChangeLog b/ChangeLog index 215c6c61..51dd184c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-10-29 Wouter Bolsterlee + + * test/test1.py: + * test/test2.py: + + Re-add locale settings to test files. + 2006-10-29 Nickolay V. Shmyrev * data/evince-ui.xml: diff --git a/test/test1.py b/test/test1.py index d3abed30..220cb836 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 c0958c85..e42fca0f 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',)