Skip to content

Commit e351392

Browse files
Review update
1 parent 7b0d606 commit e351392

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_psd.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -255,9 +255,8 @@ def test_accessibility(
255255

256256

257257
@issue("MAV-2775")
258-
@pytest.mark.parametrize("programme", list(Programme))
259258
def test_healthcare_assistant_can_see_programmes_list(
260-
log_in_as_medical_secretary, page, programme
259+
log_in_as_medical_secretary, page
261260
):
262261
"""
263262
Test: A healthcare assistant can see all team programmes on the programmes page.
@@ -276,4 +275,5 @@ def test_healthcare_assistant_can_see_programmes_list(
276275
- All team programmes are displayed (FLU, HPV, MenACWY, MMR, Td/IPV)
277276
"""
278277
DashboardPage(page).click_programmes()
279-
ProgrammesListPage(page).verify_programme_is_visible(programme)
278+
for programme in Programme:
279+
ProgrammesListPage(page).verify_programme_is_visible(programme)

0 commit comments

Comments
 (0)