Skip to content

Commit

Permalink
Merge pull request #75 from KoslickiLab/fixing-test
Browse files Browse the repository at this point in the history
Fixing test_get_info_from_single_sig
  • Loading branch information
dkoslicki authored Dec 6, 2023
2 parents e079065 + 368c680 commit 1cbb4a4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/unittests.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,9 @@ def test_get_info_from_single_sig():
with open(sig_list_file, 'r') as file:
lines = file.readlines()
if lines:
sig_file_path = lines[0].strip()
for line in lines:
if "96cb85214535b0f9723a6abc17097821.sig.gz" in line:
sig_file_path = line.strip()
else:
raise IOError("Signature list file is empty")

Expand Down

0 comments on commit 1cbb4a4

Please sign in to comment.