Skip to content

Commit 8a1701b

Browse files
committed
Added imports and formatted with Black Formatter
1 parent 7a4a10f commit 8a1701b

File tree

1 file changed

+16
-5
lines changed

1 file changed

+16
-5
lines changed

tests/smokescreen/test_compartment_5.py

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,15 @@
22
from playwright.sync_api import Page
33
from pages.logout.log_out_page import Logout
44
from pages.base_page import BasePage
5-
from pages.screening_practitioner_appointments.appointment_calendar_page import AppointmentCalendar
6-
from pages.screening_practitioner_appointments.appointment_detail_page import AppointmentDetail
5+
from pages.screening_practitioner_appointments.appointment_calendar_page import (
6+
AppointmentCalendar,
7+
)
8+
from pages.screening_practitioner_appointments.appointment_detail_page import (
9+
AppointmentDetail,
10+
)
711
from pages.screening_practitioner_appointments.screening_practitioner_appointments import (
812
ScreeningPractitionerAppointmentsPage,
13+
ScreeningPractitionerDayView,
914
)
1015
from pages.datasets.subject_datasets_page import (
1116
SubjectDatasetsPage,
@@ -15,8 +20,12 @@
1520
FitForColonoscopySspOptions,
1621
AsaGradeOptions,
1722
)
18-
from pages.screening_subject_search.advance_fobt_screening_episode_page import AdvanceFOBTScreeningEpisode
19-
from pages.screening_subject_search.attend_diagnostic_test_page import AttendDiagnosticTest
23+
from pages.screening_subject_search.advance_fobt_screening_episode_page import (
24+
AdvanceFOBTScreeningEpisode,
25+
)
26+
from pages.screening_subject_search.attend_diagnostic_test_page import (
27+
AttendDiagnosticTest,
28+
)
2029
from pages.screening_subject_search.subject_screening_summary import (
2130
SubjectScreeningSummary,
2231
)
@@ -190,7 +199,9 @@ def test_compartment_5(page: Page, smokescreen_properties: dict) -> None:
190199
ContactWithPatientPage(page).enter_start_time("11:00")
191200
ContactWithPatientPage(page).enter_end_time("12:00")
192201
ContactWithPatientPage(page).enter_discussion_record_text("Test Automation")
193-
ContactWithPatientPage(page).select_outcome_dropdown_option("Post-investigation Appointment Not Required")
202+
ContactWithPatientPage(page).select_outcome_dropdown_option(
203+
"Post-investigation Appointment Not Required"
204+
)
194205
ContactWithPatientPage(page).click_save_button()
195206

196207
verify_subject_event_status_by_nhs_no(

0 commit comments

Comments
 (0)