From 907e8cf07d42ccb0dcc4860bbdf5e96f625da991 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Mon, 25 Jan 2016 15:51:38 +0100 Subject: [PATCH] * Add u prefix to string in web example --- spacy/tests/website/test_home.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/tests/website/test_home.py b/spacy/tests/website/test_home.py index 53e527d5f..7797eb639 100644 --- a/spacy/tests/website/test_home.py +++ b/spacy/tests/website/test_home.py @@ -13,7 +13,7 @@ def token(doc): def test_load_resources_and_process_text(): from spacy.en import English nlp = English() - doc = nlp('Hello, world. Here are two sentences.') + doc = nlp(u'Hello, world. Here are two sentences.') @pytest.mark.models