mirror of https://github.com/explosion/spaCy.git
Use consistent test names
This commit is contained in:
parent
f8803808ce
commit
89525ef345
|
@ -6,7 +6,7 @@ from ..util import get_doc
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
|
|
||||||
def test_load_exc(en_tokenizer):
|
def test_tagger_load_morph_exc(en_tokenizer):
|
||||||
text = "I like his style."
|
text = "I like his style."
|
||||||
tags = ['PRP', 'VBP', 'PRP$', 'NN', '.']
|
tags = ['PRP', 'VBP', 'PRP$', 'NN', '.']
|
||||||
morph_exc = {'PRP$': {'his': {'L': '-PRP-', 'person': 3, 'case': 2}}}
|
morph_exc = {'PRP$': {'his': {'L': '-PRP-', 'person': 3, 'case': 2}}}
|
||||||
|
|
Loading…
Reference in New Issue