diff --git a/Lib/test/test_tools/test_msgfmt.py b/Lib/test/test_tools/test_msgfmt.py index dafac0562f472d..ea10d4693df75a 100644 --- a/Lib/test/test_tools/test_msgfmt.py +++ b/Lib/test/test_tools/test_msgfmt.py @@ -42,8 +42,11 @@ def test_compilation(self): self.assertDictEqual(actual._catalog, expected._catalog) def test_binary_header(self): - with open(data_dir / "general.mo", "rb") as f: - mo_data = f.read() + with temp_cwd(): + tmp_mo_file = 'messages.mo' + compile_messages(data_dir / "general.po", tmp_mo_file) + with open(tmp_mo_file, 'rb') as f: + mo_data = f.read() ( magic, @@ -53,7 +56,7 @@ def test_binary_header(self): trans_table_offset, hash_table_size, hash_table_offset, - ) = struct.unpack("=Iiiiiii", mo_data[:28]) + ) = struct.unpack("=7I", mo_data[:28]) self.assertEqual(magic, 0x950412de) self.assertEqual(version, 0) pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy