Skip to content

Commit

Permalink
Fix broken test, as part of #806.
Browse files Browse the repository at this point in the history
  • Loading branch information
donkirkby committed Feb 7, 2022
1 parent 3c3f0f2 commit 4725d68
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions micall/tests/test_sample.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,12 +161,12 @@ def test_pickle(self):
@pytest.mark.parametrize(
'project_code,excluded,expected',
[('HIVGHA', (), ()),
(None, (), ["HIV1-CRF06_CPX-GH-AB286851-seed",
"HIV1-CRF30_0206-GH-AB286854-seed"]),
('HIV', (), ["HIV1-CRF06_CPX-GH-AB286851-seed",
"HIV1-CRF30_0206-GH-AB286854-seed"]),
('HIV', ["HLA-B-seed"], ["HIV1-CRF06_CPX-GH-AB286851-seed",
"HIV1-CRF30_0206-GH-AB286854-seed",
(None, (), ["HIV1-CRF02_AG-GH-AB286855-seed",
"HIV1-CRF06_CPX-GH-AB286851-seed"]),
('HIV', (), ["HIV1-CRF02_AG-GH-AB286855-seed",
"HIV1-CRF06_CPX-GH-AB286851-seed"]),
('HIV', ["HLA-B-seed"], ["HIV1-CRF02_AG-GH-AB286855-seed",
"HIV1-CRF06_CPX-GH-AB286851-seed",
"HLA-B-seed"])])
def test_exclude_extra_seeds(project_code, excluded, expected):
all_excluded = exclude_extra_seeds(excluded, project_code)
Expand Down

0 comments on commit 4725d68

Please sign in to comment.