From 67991b6e5f95b2a546f6023c0cc0d831e8556620 Mon Sep 17 00:00:00 2001 From: ines Date: Sat, 18 Feb 2017 14:10:41 +0100 Subject: [PATCH] Add more test cases to #775 regression test to cover #847 --- spacy/tests/regression/test_issue775.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/tests/regression/test_issue775.py b/spacy/tests/regression/test_issue775.py index fe1c89240..2b5cd2df5 100644 --- a/spacy/tests/regression/test_issue775.py +++ b/spacy/tests/regression/test_issue775.py @@ -4,7 +4,7 @@ from __future__ import unicode_literals import pytest -@pytest.mark.parametrize('text', ["Shell", "shell"]) +@pytest.mark.parametrize('text', ["Shell", "shell", "Shed", "shed"]) def test_issue775(en_tokenizer, text): """Test that 'Shell' and 'shell' are excluded from the contractions generated by the English tokenizer exceptions."""