Skip to content

Commit

Permalink
Fix APEQ CPFT perinatal tests following type fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
martinburchell committed Oct 14, 2024
1 parent d2c77ad commit 23530d7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions server/camcops_server/tasks/tests/apeq_cpft_perinatal_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,12 +176,12 @@ def setUp(self) -> None:

def test_main_rows_contain_percentages(self) -> None:
expected_percentages = [
[20, 50, 25, 25], # q1
[20, "", 100, ""], # q2
[20, 5, 20, 75], # q3
[20, 10, 40, 50], # q4
[20, 15, 55, 30], # q5
[18, "", 50, 50], # q6
["20", "50", "25", "25"], # q1
["20", "", "100", ""], # q2
["20", "5", "20", "75"], # q3
["20", "10", "40", "50"], # q4
["20", "15", "55", "30"], # q5
["18", "", "50", "50"], # q6
]

main_rows = self.report._get_main_rows(self.req)
Expand Down

0 comments on commit 23530d7

Please sign in to comment.