remove old redundant test case

This commit is contained in:
svlandeg 2023-07-06 12:37:08 +02:00
parent b07dd82ae5
commit bf98eb240c

View File

@ -421,8 +421,6 @@ def test_add_pipe_before_after():
nlp.add_pipe("entity_ruler", before="ner", after=2)
with pytest.raises(ValueError):
nlp.add_pipe("entity_ruler", before=True)
with pytest.raises(ValueError):
nlp.add_pipe("entity_ruler", first=False)
def test_disable_enable_pipes():