Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
ines committed Oct 1, 2019
1 parent 851e6b1 commit fb943e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spacy_lookups_data/tests/test_lt.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ def lt_lemmatizer():

@pytest.mark.parametrize("tokens,lemmas", TEST_CASES)
def test_lt_lemmatizer(lt_lemmatizer, tokens, lemmas):
assert lemmas == [lt_lemmatizer.lookup_table.get(token, token) for token in tokens]
assert lemmas == [lt_lemmatizer.lookup(token) for token in tokens]

0 comments on commit fb943e6

Please sign in to comment.