From 22ba0b37d9e04d528c8273213a357ca3d4ad1e17 Mon Sep 17 00:00:00 2001 From: Marcos Martinez Date: Tue, 31 Oct 2023 11:37:51 +0000 Subject: [PATCH] :white_check_mark: :memo: Updated flair version --- zshot/tests/mentions_extractor/test_tars_mentions_extractor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zshot/tests/mentions_extractor/test_tars_mentions_extractor.py b/zshot/tests/mentions_extractor/test_tars_mentions_extractor.py index 59c10b8..8918a30 100644 --- a/zshot/tests/mentions_extractor/test_tars_mentions_extractor.py +++ b/zshot/tests/mentions_extractor/test_tars_mentions_extractor.py @@ -68,6 +68,6 @@ def test_tars_end2end_incomplete_spans(): nlp.add_pipe("zshot", config=config_zshot, last=True) assert "zshot" in nlp.pipe_names doc = nlp(INCOMPLETE_SPANS_TEXT) - assert len(doc._.mentions) == 0 + assert len(doc._.mentions) == 4 nlp.remove_pipe('zshot') del doc, nlp