Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
illusional committed Jun 13, 2024
1 parent a14c2c4 commit 88901fe
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions test/test_web.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,10 +165,10 @@ def get_test_participant_2():
},
batch_sequencing_group_stats={'M001': {'genome': '1'}},
participants=[],
participant_keys=[('external_id', 'Participant ID')],
participant_keys=[('external_ids', 'Participant ID')],
sample_keys=[
('id', 'Sample ID'),
('external_id', 'External Sample ID'),
('external_ids', 'External Sample ID'),
('created_date', 'Created date'),
],
sequencing_group_keys=[
Expand Down Expand Up @@ -349,10 +349,10 @@ async def test_project_summary_multiple_participants(self):
},
batch_sequencing_group_stats={'M001': {'genome': '2'}},
participants=[], # data_to_class(expected_data_list),
participant_keys=[('external_id', 'Participant ID')],
participant_keys=[('external_ids', 'Participant ID')],
sample_keys=[
('id', 'Sample ID'),
('external_id', 'External Sample ID'),
('external_ids', 'External Sample ID'),
('created_date', 'Created date'),
],
sequencing_group_keys=[
Expand Down Expand Up @@ -402,10 +402,10 @@ async def test_project_summary_multiple_participants_and_filter(self):
},
batch_sequencing_group_stats={'M001': {'genome': '2'}},
participants=[], # data_to_class(expected_data_list_filtered),
participant_keys=[('external_id', 'Participant ID')],
participant_keys=[('external_ids', 'Participant ID')],
sample_keys=[
('id', 'Sample ID'),
('external_id', 'External Sample ID'),
('external_ids', 'External Sample ID'),
('created_date', 'Created date'),
],
sequencing_group_keys=[
Expand Down Expand Up @@ -478,10 +478,10 @@ async def test_field_with_space(self):
},
batch_sequencing_group_stats={'M001': {'genome': '2'}},
participants=[],
participant_keys=[('external_id', 'Participant ID')],
participant_keys=[('external_ids', 'Participant ID')],
sample_keys=[
('id', 'Sample ID'),
('external_id', 'External Sample ID'),
('external_ids', 'External Sample ID'),
('created_date', 'Created date'),
],
sequencing_group_keys=[
Expand Down

0 comments on commit 88901fe

Please sign in to comment.