mirror of https://github.com/explosion/spaCy.git
Add unicode declaration on new regression test
This commit is contained in:
parent
cc24b6d8d5
commit
1dca7eeb03
|
@ -1,8 +1,10 @@
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
from ... import load as load_spacy
|
from ... import load as load_spacy
|
||||||
|
|
||||||
|
|
||||||
def test_issue913(en_tokenizer):
|
def test_issue957(en_tokenizer):
|
||||||
'''Test that spaCy doesn't hang on many periods.'''
|
'''Test that spaCy doesn't hang on many periods.'''
|
||||||
string = '0'
|
string = '0'
|
||||||
for i in range(1, 100):
|
for i in range(1, 100):
|
||||||
|
|
Loading…
Reference in New Issue