This commit is contained in:
Matthew Honnibal 2019-08-25 22:03:37 +02:00
parent 188a1cf297
commit 71c0321ecf
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ def test_displacy_parse_deps(en_vocab):
assert isinstance(deps, dict) assert isinstance(deps, dict)
assert deps["words"] == [ assert deps["words"] == [
{"text": "This", "tag": "DET"}, {"text": "This", "tag": "DET"},
{"text": "is", "tag": "VERB"}, {"text": "is", "tag": "AUX"},
{"text": "a", "tag": "DET"}, {"text": "a", "tag": "DET"},
{"text": "sentence", "tag": "NOUN"}, {"text": "sentence", "tag": "NOUN"},
] ]