mirror of https://github.com/explosion/spaCy.git
failing test for Issue #3521
This commit is contained in:
parent
1424b12b09
commit
e7062cf699
|
@ -0,0 +1,20 @@
|
|||
import pytest
|
||||
|
||||
from spacy.lang.en import English
|
||||
|
||||
|
||||
@pytest.mark.parametrize(
|
||||
"word",
|
||||
[
|
||||
"don't",
|
||||
"don’t",
|
||||
"I'd",
|
||||
"I’d",
|
||||
],
|
||||
)
|
||||
def test_issue3521(fr_tokenizer, word):
|
||||
nlp = English()
|
||||
|
||||
tok = nlp(word)[1]
|
||||
assert tok.is_stop
|
||||
|
Loading…
Reference in New Issue