From c304834e459f2536e788e845178de46551e1d7b0 Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Tue, 31 Jan 2017 15:18:30 +0100 Subject: [PATCH] Add missing import --- spacy/tests/regression/test_issue792.py | 1 + 1 file changed, 1 insertion(+) diff --git a/spacy/tests/regression/test_issue792.py b/spacy/tests/regression/test_issue792.py index 231261523..a07059b6d 100644 --- a/spacy/tests/regression/test_issue792.py +++ b/spacy/tests/regression/test_issue792.py @@ -1,6 +1,7 @@ # coding: utf-8 from __future__ import unicode_literals +import pytest @pytest.mark.xfail @pytest.mark.parametrize('text', ["This is a string ", "This is a string\u0020"])