diff --git a/spacy/tests/regression/test_issue859.py b/spacy/tests/regression/test_issue859.py new file mode 100644 index 000000000..1eec9e8b1 --- /dev/null +++ b/spacy/tests/regression/test_issue859.py @@ -0,0 +1,13 @@ +# encoding: utf8 +from __future__ import unicode_literals + +import pytest + + +@pytest.mark.xfail +@pytest.mark.parametrize('text', ["aaabbb@ccc.com\nThank you!"]) +def test_issue859(en_tokenizer, text): + """Test that no extra space is added in doc.text method.""" + doc = en_tokenizer(text) + assert ' ' not in doc.text + assert doc.text == text