Fix formatting

This commit is contained in:
Ines Montani 2017-01-12 22:56:20 +01:00
parent 5f0d196a31
commit 6935d55409

View File

@ -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