diff --git a/spacy/errors.py b/spacy/errors.py index 3ab9661e0..0932ba0fd 100644 --- a/spacy/errors.py +++ b/spacy/errors.py @@ -457,7 +457,7 @@ class Errors: # TODO: fix numbering after merging develop into master E900 = ("Could not run the full 'nlp' pipeline for evaluation. If you specified " - "frozen components, make sure they were already trained and initialized. ") + "frozen components, make sure they were already initialized and trained. ") E901 = ("Failed to remove existing output directory: {path}. If your " "config and the components you train change between runs, a " "non-empty output directory can lead to stale pipeline data. To " diff --git a/spacy/tests/pipeline/test_pipe_methods.py b/spacy/tests/pipeline/test_pipe_methods.py index cd18b0159..b744aed98 100644 --- a/spacy/tests/pipeline/test_pipe_methods.py +++ b/spacy/tests/pipeline/test_pipe_methods.py @@ -149,7 +149,6 @@ def test_disable_pipes_context_restore(nlp, name): assert not nlp.has_pipe(name) - def test_select_pipes_list_arg(nlp): for name in ["c1", "c2", "c3"]: nlp.add_pipe("new_pipe", name=name)