Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/hla_algorithm_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from io import StringIO
from pathlib import Path
from typing import Optional, cast
from unittest.mock import MagicMock, _Call, patch
from unittest.mock import MagicMock, _Call

import numpy as np
import pytest
Expand Down
4 changes: 1 addition & 3 deletions tests/interpret_from_json_lib_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -377,9 +377,7 @@ def test_hla_match_adaptor_from_match_details(
raw_mismatches: list[HLAMismatch],
raw_expected_result: list[str],
):
match_details: HLAMatchDetails = HLAMatchDetails(
mismatch_count=len(raw_mismatches), mismatches=raw_mismatches
)
match_details: HLAMatchDetails = HLAMatchDetails(mismatches=raw_mismatches)
expected_result: HLAMatchAdaptor = HLAMatchAdaptor(
mismatch_count=len(raw_expected_result), mismatches=raw_expected_result
)
Expand Down