Skip to content

Commit

Permalink
Fix typo in tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
roryk committed Apr 5, 2020
1 parent 8bd3f22 commit b09d755
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/test_automated_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,5 +329,5 @@ def test_11_hla(install_test_files, data_dir):
out = optitype.run(data)
with open(out["hla"]["call_file"]) as in_handle:
header = in_handle.readline().strip().split(",")
hla_a = dict(zip(header), in_handle.readline().strip().split(","))
hla_a = dict(zip(header, in_handle.readline().strip().split(",")))
assert hla_a["alleles"] == "HLA-A*11:01;HLA-A*24:02", hla_a

0 comments on commit b09d755

Please sign in to comment.