mirror of
https://github.com/explosion/spaCy.git
synced 2025-06-09 23:53:10 +03:00
Remove print statement
This commit is contained in:
parent
98c13d8aa9
commit
2883ebfca2
|
@ -13,5 +13,4 @@ def test_issue636(EN, text):
|
||||||
doc1 = EN(text)
|
doc1 = EN(text)
|
||||||
doc2 = Doc(EN.vocab)
|
doc2 = Doc(EN.vocab)
|
||||||
doc2.from_bytes(doc1.to_bytes())
|
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]
|
assert [t.lemma_ for t in doc1] == [t.lemma_ for t in doc2]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user