From 8729dba619f0eeadaee17d48fddb3e6be37d51bb Mon Sep 17 00:00:00 2001 From: Raphael Mitsch Date: Mon, 13 Mar 2023 10:45:57 +0100 Subject: [PATCH] Remove unneeded sentencizer component. --- spacy/tests/pipeline/test_entity_linker.py | 1 - 1 file changed, 1 deletion(-) diff --git a/spacy/tests/pipeline/test_entity_linker.py b/spacy/tests/pipeline/test_entity_linker.py index 17e412d69..4558be70a 100644 --- a/spacy/tests/pipeline/test_entity_linker.py +++ b/spacy/tests/pipeline/test_entity_linker.py @@ -118,7 +118,6 @@ def test_sentence_crossing_ents(entity_in_first_sentence: bool): # Test that the NEL doesn't crash when an entity crosses a sentence boundary nlp = English() vector_length = 3 - nlp.add_pipe("sentencizer") text = "Mahler 's Symphony No. 8 was beautiful." entities = [(10, 24, "WORK")] links = {(10, 24): {"Q7304": 0.0, "Q270853": 1.0}}