Fix parser test

This commit is contained in:
ines 2017-10-07 00:38:51 +02:00
parent b39409173e
commit 61a503a611
1 changed files with 3 additions and 2 deletions

View File

@ -58,8 +58,9 @@ def en_vocab():
@pytest.fixture
def en_parser():
return util.get_lang_class('en').Defaults.create_parser()
def en_parser(en_vocab):
nlp = util.get_lang_class('en')(en_vocab)
return nlp.create_pipe('parser')
@pytest.fixture