diff --git a/spacy/tests/regression/test_issue736.py b/spacy/tests/regression/test_issue736.py index 3bc93364f..eee4912eb 100644 --- a/spacy/tests/regression/test_issue736.py +++ b/spacy/tests/regression/test_issue736.py @@ -1,7 +1,4 @@ # coding: utf-8 -"""Test that times like "7am" are tokenized correctly and that numbers are converted to string.""" - - from __future__ import unicode_literals import pytest @@ -9,6 +6,7 @@ import pytest @pytest.mark.parametrize('text,number', [("7am", "7"), ("11p.m.", "11")]) def test_issue736(en_tokenizer, text, number): + """Test that times like "7am" are tokenized correctly and that numbers are converted to string.""" tokens = en_tokenizer(text) assert len(tokens) == 2 assert tokens[0].text == number