From 54a79de646c86baa76b67814d4c21ccb57526801 Mon Sep 17 00:00:00 2001 From: nobu-g Date: Mon, 14 Oct 2024 16:33:57 +0900 Subject: [PATCH] revert KNP option --- tests/processors/test_knp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/processors/test_knp.py b/tests/processors/test_knp.py index 335c9bb7..7dcc8d68 100644 --- a/tests/processors/test_knp.py +++ b/tests/processors/test_knp.py @@ -71,7 +71,7 @@ def test_apply() -> None: ], ) def test_apply_to_sentence(text: str) -> None: - knp = KNP(options=["-tab", "-anaphora"]) + knp = KNP() sent = knp.apply_to_sentence(text) assert sent.text == text.replace("\r", "").replace("\n", "")