From 9c7778b9f79364efaa1092c54f21e8b40b4fe039 Mon Sep 17 00:00:00 2001 From: Thomas Leonard Date: Sat, 20 Apr 2013 12:51:10 +0100 Subject: [PATCH] Made unit-tests pass on ArchLinux This hack can be removed once 0install 2.2 is out. --- test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test.py b/test.py index 84035a5..3eecacf 100755 --- a/test.py +++ b/test.py @@ -40,6 +40,7 @@ class TestExport(unittest.TestCase): 'HOME': self.tmpdir, 'http_proxy' : 'localhost:1111', # Detect accidental network access 'PATH': '/bin:/usr/bin:' + os.path.dirname(sys.executable), + 'LANG': 'en_GB.utf-8', # Hack for 0install < 2.2 on ArchLinux } child = subprocess.Popen([setup_sh, '--help'], env = env, stdout = subprocess.PIPE) -- 2.11.4.GIT