diff --git a/tests/metagpt/tools/test_moderation.py b/tests/metagpt/tools/test_moderation.py index 5ec3bd4de..8027f978b 100644 --- a/tests/metagpt/tools/test_moderation.py +++ b/tests/metagpt/tools/test_moderation.py @@ -11,21 +11,6 @@ import pytest from metagpt.tools.moderation import Moderation -@pytest.mark.parametrize( - ("content",), - [ - [ - ["I will kill you", "The weather is really nice today", "I want to hit you"], - ] - ], -) -def test_moderation(content): - moderation = Moderation() - results = moderation.moderation(content=content) - assert isinstance(results, list) - assert len(results) == len(content) - - @pytest.mark.asyncio @pytest.mark.parametrize( ("content",),