From 2ac69facc6da342c38c9d851f1ec53a3be0b820a Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Thu, 27 Sep 2018 15:34:16 +0200 Subject: [PATCH] Fix Python 2 test failure --- spacy/tests/regression/test_issue2800.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/spacy/tests/regression/test_issue2800.py b/spacy/tests/regression/test_issue2800.py index 5f5b9fa51..7f4df9dab 100644 --- a/spacy/tests/regression/test_issue2800.py +++ b/spacy/tests/regression/test_issue2800.py @@ -1,4 +1,6 @@ '''Test issue that arises when too many labels are added to NER model.''' +from __future__ import unicode_literals + import random from ...lang.en import English