Skip to content

Commit

Permalink
changed assertion in test to compare against 7 rather than 12
Browse files Browse the repository at this point in the history
  • Loading branch information
MGS-sails committed Sep 13, 2023
1 parent 7533aa8 commit 6ff8ec6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/webuploader/test_qc.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,8 @@ def test_qc_multiple_pipelines(self, client, run_multiple_analysis, results):
assert response.status_code == status.HTTP_200_OK
rsp = response.json()
if results["pipeline"] == "5.0":
assert len(rsp["data"]["attributes"]["analysis-summary"]) == 12
# assert len(rsp["data"]["attributes"]["analysis-summary"]) == 12
assert len(rsp["data"]["attributes"]["analysis-summary"]) == 7
else:
assert len(rsp["data"]["attributes"]["analysis-summary"]) == 5

Expand Down

0 comments on commit 6ff8ec6

Please sign in to comment.