From 376c5813a75e4ecb6770bf62aa6c7cbbe3f9387a Mon Sep 17 00:00:00 2001 From: ines Date: Fri, 24 Feb 2017 17:41:12 +0100 Subject: [PATCH] Remove print statements from test --- spacy/tests/doc/test_doc_api.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/spacy/tests/doc/test_doc_api.py b/spacy/tests/doc/test_doc_api.py index 58813ec58..619ec6707 100644 --- a/spacy/tests/doc/test_doc_api.py +++ b/spacy/tests/doc/test_doc_api.py @@ -186,9 +186,6 @@ def test_doc_api_runtime_error(en_tokenizer): if len(np) > 1: nps.append((np.start_char, np.end_char, np.root.tag_, np.text, np.root.ent_type_)) for np in nps: - print(np) - for word in doc: - print(word.idx, word.text, word.head.i, word.head.text) doc.merge(*np)