From c4be9c36fe969a590e875aaba1d33ce940083967 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Mon, 24 Apr 2017 10:09:01 +0200 Subject: [PATCH] Fix unicode header in tests --- spacy/tests/regression/test_issue758.py | 1 + spacy/tests/regression/test_issue995.py | 2 ++ 2 files changed, 3 insertions(+) diff --git a/spacy/tests/regression/test_issue758.py b/spacy/tests/regression/test_issue758.py index c0bbb6945..a059f095f 100644 --- a/spacy/tests/regression/test_issue758.py +++ b/spacy/tests/regression/test_issue758.py @@ -1,3 +1,4 @@ +from __future__ import unicode_literals from ... import load as load_spacy from ...attrs import LEMMA from ...matcher import merge_phrase diff --git a/spacy/tests/regression/test_issue995.py b/spacy/tests/regression/test_issue995.py index 715c24607..633e96fb5 100644 --- a/spacy/tests/regression/test_issue995.py +++ b/spacy/tests/regression/test_issue995.py @@ -1,3 +1,5 @@ +from __future__ import unicode_literals + import pytest from ... import load as load_spacy