Skip to content

Commit 6bb948e

Browse files
committed
Swap argument order in assert
1 parent dec1cb0 commit 6bb948e

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
@@ -37,7 +37,7 @@ def test_compilation(self):
3737
with open(tmp_mo_file, 'rb') as f:
3838
actual = GNUTranslations(f)
3939

40-
self.assertDictEqual(expected._catalog, actual._catalog)
40+
self.assertDictEqual(actual._catalog, expected._catalog)
4141

4242
def test_invalid_msgid_plural(self):
4343
with temp_cwd():

0 commit comments

Comments
 (0)