From c29927d2e7ef08a73f9fe0ba74bc77a6df65b2b7 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Mon, 16 Oct 2017 17:22:18 +0200 Subject: [PATCH] Fix matcher test --- spacy/tests/test_matcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/tests/test_matcher.py b/spacy/tests/test_matcher.py index ad6192c8f..9fcb47305 100644 --- a/spacy/tests/test_matcher.py +++ b/spacy/tests/test_matcher.py @@ -195,7 +195,7 @@ def test_operator_combos(matcher): ('aaa', 'a+ a a b', False), ('aaab', 'a+ a a', True), ('aaab', 'a+', True), - ('aaab', 'a+ a b', False), # <-- This is the weird semantics + ('aaab', 'a+ a b', True), ] for string, pattern_str, result in cases: matcher = Matcher(matcher.vocab)