Remove print statements from test

This commit is contained in:
ines 2017-02-24 17:41:12 +01:00
parent 056b2466e3
commit 51eb190ef4
1 changed files with 0 additions and 3 deletions

View File

@ -186,9 +186,6 @@ def test_doc_api_runtime_error(en_tokenizer):
if len(np) > 1: if len(np) > 1:
nps.append((np.start_char, np.end_char, np.root.tag_, np.text, np.root.ent_type_)) nps.append((np.start_char, np.end_char, np.root.tag_, np.text, np.root.ent_type_))
for np in nps: for np in nps:
print(np)
for word in doc:
print(word.idx, word.text, word.head.i, word.head.text)
doc.merge(*np) doc.merge(*np)