Skip to content

Commit

Permalink
Fix regression test
Browse files Browse the repository at this point in the history
  • Loading branch information
honnibal committed Mar 25, 2017
1 parent c748907 commit b94286d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spacy/tests/regression/test_issue595.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
def test_issue595():
"""Test lemmatization of base forms"""
words = ["Do", "n't", "feed", "the", "dog"]
tag_map = {'VB': {POS: VERB, 'morph': VerbForm_inf}}
tag_map = {'VB': {POS: VERB, VerbForm_inf: True}}
rules = {"verb": [["ed", "e"]]}

lemmatizer = Lemmatizer({'verb': {}}, {'verb': {}}, rules)
Expand Down

0 comments on commit b94286d

Please sign in to comment.