Skip to content

Commit

Permalink
test: fix assertion message
Browse files Browse the repository at this point in the history
  • Loading branch information
stefan-it committed Jul 28, 2023
1 parent f9aa527 commit 0842419
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -804,8 +804,8 @@ def test_german_ler_corpus(tasks_base_path):

# Number of instances per dataset split are taken from https://huggingface.co/datasets/elenanereiss/german-ler
assert len(corpus.train) == 53384, "Mismatch in number of sentences for train split"
assert len(corpus.dev) == 6666, "Mismatch in number of sentences for train split"
assert len(corpus.test) == 6673, "Mismatch in number of sentences for train split"
assert len(corpus.dev) == 6666, "Mismatch in number of sentences for dev split"
assert len(corpus.test) == 6673, "Mismatch in number of sentences for test split"


def test_multi_file_jsonl_corpus_should_use_label_type(tasks_base_path):
Expand Down

0 comments on commit 0842419

Please sign in to comment.