Remove unnecessary argument in test

This commit is contained in:
Ines Montani 2016-12-18 13:33:40 +01:00
parent 121c310566
commit 77cf2fb0f6

View File

@ -34,7 +34,7 @@ def vocab(lemmatizer, tag_map):
return Vocab(lemmatizer=lemmatizer, tag_map=tag_map) return Vocab(lemmatizer=lemmatizer, tag_map=tag_map)
def test_not_lemmatize_base_forms(vocab, lemmatizer): def test_not_lemmatize_base_forms(vocab):
doc = Doc(vocab, words=["Do", "n't", "feed", "the", "dog"]) doc = Doc(vocab, words=["Do", "n't", "feed", "the", "dog"])
feed = doc[2] feed = doc[2]
feed.tag_ = u'VB' feed.tag_ = u'VB'