From f30aac324ca87e44e780be6023e62eb28562a629 Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Mon, 18 Feb 2019 13:36:15 +0100 Subject: [PATCH] Update test_issue1971.py --- spacy/tests/regression/test_issue1971.py | 1 + 1 file changed, 1 insertion(+) diff --git a/spacy/tests/regression/test_issue1971.py b/spacy/tests/regression/test_issue1971.py index b28d07f60..177fa83b7 100644 --- a/spacy/tests/regression/test_issue1971.py +++ b/spacy/tests/regression/test_issue1971.py @@ -38,6 +38,7 @@ def test_issue_1971_2(en_vocab): @pytest.mark.xfail def test_issue_1971_3(en_vocab): + """Test that pattern matches correctly for multiple extension attributes.""" Token.set_extension("a", default=1) Token.set_extension("b", default=2) doc = Doc(en_vocab, words=["hello", "world"])