From d5d774413a959a9ac6282d0b74c48b5a3e296c70 Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Thu, 12 Jan 2017 22:03:07 +0100 Subject: [PATCH] Update comments on EN and DE fixtures --- spacy/tests/conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spacy/tests/conftest.py b/spacy/tests/conftest.py index 05199c9c3..55166cc46 100644 --- a/spacy/tests/conftest.py +++ b/spacy/tests/conftest.py @@ -68,13 +68,13 @@ def text_file(): return StringIO() -# deprecated, to be replaced with more specific instances +# only used for tests that require loading the models +# in all other cases, use specific instances @pytest.fixture(scope="session") def EN(): return English() -# deprecated, to be replaced with more specific instances @pytest.fixture(scope="session") def DE(): return German()