* Fix test for whitespace

This commit is contained in:
Matthew Honnibal 2016-01-19 20:38:26 +01:00
parent e89069dcae
commit 82d011ac43

View File

@ -35,6 +35,6 @@ def test_return_char(EN):
for token in tokens:
if token.is_space:
assert token.pos == SPACE
assert tokens[3] == '\r\n\r\n'
assert tokens[3].text == '\r\n\r\n'
assert tokens[3].is_space
assert tokens[3].pos == SPACE