From 2883ebfca266f7df9c15542f9b042479c5b94e5e Mon Sep 17 00:00:00 2001 From: ines Date: Mon, 13 Mar 2017 12:30:42 +0100 Subject: [PATCH] Remove print statement --- spacy/tests/regression/test_issue636.py | 1 - 1 file changed, 1 deletion(-) diff --git a/spacy/tests/regression/test_issue636.py b/spacy/tests/regression/test_issue636.py index ab33106b4..12f0d8135 100644 --- a/spacy/tests/regression/test_issue636.py +++ b/spacy/tests/regression/test_issue636.py @@ -13,5 +13,4 @@ def test_issue636(EN, text): doc1 = EN(text) doc2 = Doc(EN.vocab) doc2.from_bytes(doc1.to_bytes()) - print([t.lemma_ for t in doc1], [t.lemma_ for t in doc2]) assert [t.lemma_ for t in doc1] == [t.lemma_ for t in doc2]