From a11218151f0fa89bcead82efdd816db856f59fe9 Mon Sep 17 00:00:00 2001 From: shimizukawa Date: Fri, 13 Jan 2017 00:24:10 +0900 Subject: [PATCH] fix nits --- tests/test_util_i18n.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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