Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
ArneBinder committed Nov 2, 2023
1 parent 3873566 commit 91ec726
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/dataset_builders/pie/test_conll2003.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,10 @@ def converted_document(converted_pie_dataset):


def test_converted_document(converted_document, converter_document_type):
assert isinstance(document, converter_document_type)
assert isinstance(converted_document, converter_document_type)
if converter_document_type == TextDocumentWithLabeledSpans:
assert document.text == "EU rejects German call to boycott British lamb ."
entities = list(document.labeled_spans)
assert converted_document.text == "EU rejects German call to boycott British lamb ."
entities = list(converted_document.labeled_spans)
assert len(entities) == 3
assert str(entities[0]) == "EU"
assert str(entities[1]) == "German"
Expand Down

0 comments on commit 91ec726

Please sign in to comment.