Un-xfail passing tests

This commit is contained in:
Ines Montani 2019-12-25 18:02:20 +01:00
parent a892821c51
commit 401946d480
4 changed files with 0 additions and 4 deletions

View File

@ -108,7 +108,6 @@ def test_en_tokenizer_splits_double_hyphen_infix(en_tokenizer):
assert tokens[9].text == "people"
@pytest.mark.xfail
def test_en_tokenizer_splits_period_abbr(en_tokenizer):
text = "Today is Tuesday.Mr."
tokens = en_tokenizer(text)

View File

@ -79,7 +79,6 @@ def test_en_tokenizer_splits_open_appostrophe(en_tokenizer, text):
assert tokens[0].text == "'"
@pytest.mark.xfail
@pytest.mark.parametrize("text", ["Hello''"])
def test_en_tokenizer_splits_double_end_quote(en_tokenizer, text):
tokens = en_tokenizer(text)

View File

@ -77,7 +77,6 @@ def test_ru_tokenizer_splits_open_appostrophe(ru_tokenizer, text):
assert tokens[0].text == "'"
@pytest.mark.xfail
@pytest.mark.parametrize("text", ["Тест''"])
def test_ru_tokenizer_splits_double_end_quote(ru_tokenizer, text):
tokens = ru_tokenizer(text)

View File

@ -77,7 +77,6 @@ def test_sr_tokenizer_splits_open_appostrophe(sr_tokenizer, text):
assert tokens[0].text == "'"
@pytest.mark.xfail
@pytest.mark.parametrize("text", ["Тест''"])
def test_sr_tokenizer_splits_double_end_quote(sr_tokenizer, text):
tokens = sr_tokenizer(text)