Skip to content

Commit

Permalink
Fix test seqr stats function
Browse files Browse the repository at this point in the history
  • Loading branch information
EddieLF committed Oct 20, 2023
1 parent 3632656 commit f3d3530
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/test_web.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,9 @@ async def test_projects_seqr_stats(self):
total_samples=1,
total_sequencing_groups=1,
total_crams=0,
latest_es_index_id=None,
latest_es_index_id=0,
total_sgs_in_latest_es_index=0,
latest_annotate_dataset_id=None,
latest_annotate_dataset_id=0,
total_sgs_in_latest_annotate_dataset=0,
),
ProjectSeqrStatsInternal(
Expand All @@ -234,9 +234,9 @@ async def test_projects_seqr_stats(self):
total_samples=0,
total_sequencing_groups=0,
total_crams=0,
latest_es_index_id=None,
latest_es_index_id=0,
total_sgs_in_latest_es_index=0,
latest_annotate_dataset_id=None,
latest_annotate_dataset_id=0,
total_sgs_in_latest_annotate_dataset=0,
),
]
Expand Down

0 comments on commit f3d3530

Please sign in to comment.