* Fix serialize test

This commit is contained in:
Matthew Honnibal 2015-11-03 08:51:33 +01:00
parent 833eb35c57
commit 85372468e3
1 changed files with 0 additions and 1 deletions

View File

@ -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'