From cfff4e0f610a50156b0ea62f392a5b4c0761846a Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Fri, 31 Mar 2017 13:59:32 +0200 Subject: [PATCH] Improve test --- spacy/tests/regression/test_issue758.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/tests/regression/test_issue758.py b/spacy/tests/regression/test_issue758.py index 0dac5737b..2ddba9975 100644 --- a/spacy/tests/regression/test_issue758.py +++ b/spacy/tests/regression/test_issue758.py @@ -14,4 +14,4 @@ def test_issue758(): nlp.matcher.add('splash', 'my_entity', {}, [[{LEMMA: 'splash'}, {LEMMA: 'on'}]], on_match=merge_phrase) - doc = nlp('splash On') + doc = nlp('splash On', parse=False)