From 85372468e361f2e6bdeb10cd6c3c080775d9f0ab Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Tue, 3 Nov 2015 08:51:33 +0100 Subject: [PATCH] * Fix serialize test --- spacy/tests/serialize/test_io.py | 1 - 1 file changed, 1 deletion(-) diff --git a/spacy/tests/serialize/test_io.py b/spacy/tests/serialize/test_io.py index 4157ee309..f90bb20c2 100644 --- a/spacy/tests/serialize/test_io.py +++ b/spacy/tests/serialize/test_io.py @@ -44,7 +44,6 @@ def test_lemmas(EN): orig = EN(u'The geese are flying') result = Doc(orig.vocab).from_bytes(orig.to_bytes()) the, geese, are, flying = result - assert the.lemma_ == 'the' assert geese.lemma_ == 'goose' assert are.lemma_ == 'be' assert flying.lemma_ == 'fly'