Skip to content

Commit

Permalink
Fix test [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
ines committed Oct 25, 2019
1 parent 66a5514 commit 653df87
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spacy_lookups_data/tests/test_lb.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ def lb_nlp():
("kritt", "kréien"),
],
)
def test_lb_lemmatizer_lookup_assigns(lb_tokenizer, string, lemma):
tokens = lb_tokenizer(string)
def test_lb_lemmatizer_lookup_assigns(lb_nlp, string, lemma):
tokens = lb_nlp(string)
assert tokens[0].lemma_ == lemma

0 comments on commit 653df87

Please sign in to comment.