Skip to content

Commit a4f1769

Browse files
committed
Fix a parameter inversion in test_msgfmt.py
compile_messages parameters order has changed in a previous commit to allow compiling multiple PO files.
1 parent caa8955 commit a4f1769

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_tools/test_msgfmt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def test_compilation(self):
5454
def test_binary_header(self):
5555
with temp_cwd():
5656
tmp_mo_file = 'messages.mo'
57-
compile_messages(data_dir / "general.po", tmp_mo_file)
57+
compile_messages(tmp_mo_file, data_dir / "general.po")
5858
with open(tmp_mo_file, 'rb') as f:
5959
mo_data = f.read()
6060

0 commit comments

Comments
 (0)