From 031673dc35e7bb9f2c16de6d98323e6c51b73302 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Mon, 22 Jun 2020 16:08:01 +0200 Subject: [PATCH] Update test --- spacy/tests/regression/test_issue1501-2000.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/tests/regression/test_issue1501-2000.py b/spacy/tests/regression/test_issue1501-2000.py index 94996c410..8c989a7eb 100644 --- a/spacy/tests/regression/test_issue1501-2000.py +++ b/spacy/tests/regression/test_issue1501-2000.py @@ -288,7 +288,7 @@ def test_issue1967(label): "entities": [label], }, ) - assert "JOB-NAME" in ner.moves.get_actions(gold_parses=[example])[1] + assert "JOB-NAME" in ner.moves.get_actions(examples=[example])[1] def test_issue1971(en_vocab):