Fix typo in unit tests (#5823)

This commit is contained in:
graue70 2020-07-27 20:18:48 +02:00 committed by GitHub
parent 2880d8a555
commit b97dbab998
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ def test_tokenizer_splits_double_space(tokenizer, text):
@pytest.mark.parametrize("text", ["lorem ipsum "])
def test_tokenizer_handles_double_trainling_ws(tokenizer, text):
def test_tokenizer_handles_double_trailing_ws(tokenizer, text):
tokens = tokenizer(text)
assert repr(tokens.text_with_ws) == repr(text)