From 85ab99e6929b91ce0331267116b7142fc3be612f Mon Sep 17 00:00:00 2001 From: greg Date: Tue, 23 Jan 2018 15:00:14 -0500 Subject: [PATCH] Correct test examples --- spacy/tests/regression/test_issue1450.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spacy/tests/regression/test_issue1450.py b/spacy/tests/regression/test_issue1450.py index 6f1d4f568..3c8f975d9 100644 --- a/spacy/tests/regression/test_issue1450.py +++ b/spacy/tests/regression/test_issue1450.py @@ -13,8 +13,8 @@ from ...vocab import Vocab ('a b', 0, 2), ('a c', 0, 1), ('a b c', 0, 2), - ('a b b c', 0, 2), - ('a b b', 0, 2), + ('a b b c', 0, 3), + ('a b b', 0, 3), ] ) def test_issue1450_matcher_end_zero_plus(string, start, end):