mirror of https://github.com/explosion/spaCy.git
* Add u prefix to string in web example
This commit is contained in:
parent
eba03695ef
commit
907e8cf07d
|
@ -13,7 +13,7 @@ def token(doc):
|
||||||
def test_load_resources_and_process_text():
|
def test_load_resources_and_process_text():
|
||||||
from spacy.en import English
|
from spacy.en import English
|
||||||
nlp = English()
|
nlp = English()
|
||||||
doc = nlp('Hello, world. Here are two sentences.')
|
doc = nlp(u'Hello, world. Here are two sentences.')
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.models
|
@pytest.mark.models
|
||||||
|
|
Loading…
Reference in New Issue