diff --git a/tests/test_util_i18n.py b/tests/test_util_i18n.py index 938df73a0..74313c5f5 100644 --- a/tests/test_util_i18n.py +++ b/tests/test_util_i18n.py @@ -51,7 +51,7 @@ def test_catalog_outdated(tempdir): def test_catalog_write_mo(tempdir): (tempdir / 'test.po').write_text('#') cat = i18n.CatalogInfo(tempdir, 'test', 'utf-8') - cat.write_mo('en', lambda *a, *kw: None) + cat.write_mo('en', lambda *a, **kw: None) assert os.path.exists(cat.mo_path) with open(cat.mo_path, 'rb') as f: assert read_mo(f) is not None