From ccd332a9fc6290ee0c49dcbfbd6c62349cab1a1f Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Tue, 9 Jun 2020 15:49:04 +0200 Subject: [PATCH] Update test stubs --- spacy/tests/test_new_example.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/spacy/tests/test_new_example.py b/spacy/tests/test_new_example.py index fcd02ee91..473666eca 100644 --- a/spacy/tests/test_new_example.py +++ b/spacy/tests/test_new_example.py @@ -38,27 +38,27 @@ def test_Example_from_dict_with_tags(annots): """ -def test_Example_from_dict_with_entities(vocab): +def test_Example_from_dict_with_entities(annots): # TODO pass -def test_Example_from_dict_with_parse(vocab): +def test_Example_from_dict_with_parse(annots): # TODO pass -def test_Example_from_dict_with_morphology(vocab): +def test_Example_from_dict_with_morphology(annots): # TODO pass -def test_Example_from_dict_with_sent_start(vocab): +def test_Example_from_dict_with_sent_start(annots): # TODO pass -def test_Example_from_dict_with_cats(vocab): +def test_Example_from_dict_with_cats(annots): # TODO pass -def test_Example_from_dict_with_links(vocab): +def test_Example_from_dict_with_links(annots): # TODO pass """