Skip to content

Commit

Permalink
cleaup
Browse files Browse the repository at this point in the history
  • Loading branch information
bkorycki committed Nov 27, 2024
1 parent cd753be commit 24cc8bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/modelbench_tests/test_consistency_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,9 @@ def test_normal_run(tmp_path, basic_benchmark_run):
def test_entities_collected(tmp_path, basic_benchmark_run):
checker = init_checker_for_journal(tmp_path, basic_benchmark_run)

assert sorted(checker.suts) == sorted(["sut1", "sut2"])
assert sorted(checker.suts) == ["sut1", "sut2"]
assert checker.tests == ["test1"]
assert sorted(checker.annotators) == sorted(["annotator1", "annotator2", "annotator3"])
assert sorted(checker.annotators) == ["annotator1", "annotator2", "annotator3"]


def test_cached_and_fetched_only_annotators_also_collected(tmp_path, basic_benchmark_run):
Expand Down

0 comments on commit 24cc8bf

Please sign in to comment.