Force C.UTF-8 locale for messages instead of en_US.UTF-8

This commit is contained in:
mindston 2025-01-20 16:45:54 +01:00 committed by Hans-Christoph Steiner
parent aeb6c612e9
commit fa4ff197aa

View file

@ -252,7 +252,7 @@ class IntegrationTest(unittest.TestCase):
)
self.assert_run(
self.fdroid_cmd + ["update", "--verbose", "--pretty"],
env=os.environ | {"LC_MESSAGES": "en_US.UTF-8"},
env=os.environ | {"LC_MESSAGES": "C.UTF-8"},
)
index_xml = Path("repo/index.xml").read_text()
self.assertIn("<application id=", index_xml)