From 71c0321ecf03ecbd0566295980472f7f70b037bc Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Sun, 25 Aug 2019 22:03:37 +0200 Subject: [PATCH] Fix test --- spacy/tests/test_displacy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/tests/test_displacy.py b/spacy/tests/test_displacy.py index 5e99d261a..2d1f1bd8f 100644 --- a/spacy/tests/test_displacy.py +++ b/spacy/tests/test_displacy.py @@ -32,7 +32,7 @@ def test_displacy_parse_deps(en_vocab): assert isinstance(deps, dict) assert deps["words"] == [ {"text": "This", "tag": "DET"}, - {"text": "is", "tag": "VERB"}, + {"text": "is", "tag": "AUX"}, {"text": "a", "tag": "DET"}, {"text": "sentence", "tag": "NOUN"}, ]