From 3684f7fdfd8ddbd3f6da34b53487a256663099ca Mon Sep 17 00:00:00 2001 From: Paul O'Leary McCann Date: Wed, 14 Jul 2021 18:22:14 +0900 Subject: [PATCH] Remove comment from fixed test --- spacy/tests/pipeline/test_coref.py | 1 - 1 file changed, 1 deletion(-) diff --git a/spacy/tests/pipeline/test_coref.py b/spacy/tests/pipeline/test_coref.py index e09d4827d..27a9a5b46 100644 --- a/spacy/tests/pipeline/test_coref.py +++ b/spacy/tests/pipeline/test_coref.py @@ -63,7 +63,6 @@ def test_initialized_short(nlp): nlp.initialize() assert nlp.pipe_names == ["coref"] text = "Hi there" - # TODO: this crashes with an IndexError: too many indices doc = nlp(text) print(doc.spans)