Remove comment from fixed test

This commit is contained in:
Paul O'Leary McCann 2021-07-14 18:22:14 +09:00
parent f1796e4af7
commit 3684f7fdfd

View File

@ -63,7 +63,6 @@ def test_initialized_short(nlp):
nlp.initialize() nlp.initialize()
assert nlp.pipe_names == ["coref"] assert nlp.pipe_names == ["coref"]
text = "Hi there" text = "Hi there"
# TODO: this crashes with an IndexError: too many indices
doc = nlp(text) doc = nlp(text)
print(doc.spans) print(doc.spans)