* Fix sentence boundary test

This commit is contained in:
Matthew Honnibal 2016-05-02 15:26:07 +02:00
parent d2f469b809
commit 02c23cc1d0
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ def test_single_exclamation(EN):
@pytest.mark.models
def test_single_question(EN):
string = 'A test sentence?'
words = EN(string, tag=False, parse=False)
words = EN(string, tag=False, parse=True)
assert len(words) == 4
assert len(list(words.sents)) == 1
assert sum(len(sent) for sent in words.sents) == len(words)