From aa105927f35cd42199d99bd3cfed5a64c2d1141c Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Sun, 23 Oct 2016 20:31:25 +0200 Subject: [PATCH] Update test --- spacy/tests/matcher/test_matcher_bugfixes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/tests/matcher/test_matcher_bugfixes.py b/spacy/tests/matcher/test_matcher_bugfixes.py index 9b9fcc421..053f8146d 100644 --- a/spacy/tests/matcher/test_matcher_bugfixes.py +++ b/spacy/tests/matcher/test_matcher_bugfixes.py @@ -46,7 +46,7 @@ def test_overlap_issue242(): if os.environ.get('SPACY_DATA'): data_dir = os.environ.get('SPACY_DATA') else: - data_dir = False + data_dir = None nlp = spacy.en.English(path=data_dir, tagger=False, parser=False, entity=False)