Skip to content

Commit a6be52e

Browse files
committed
Addressing review comment
1 parent 450b2a2 commit a6be52e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/smokescreen/test_compartment_6.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def test_compartment_6(page: Page, smokescreen_properties: dict) -> None:
8383
)
8484

8585
# Older patient - LNPCP Result
86-
logging.info("Processing LNPCP result for an older subject")
86+
logging.info("LNPCP result for an older subject")
8787
nhs_no = subjects_df["subject_nhs_number"].iloc[2]
8888
logging.info(f"Selected NHS number for older subject: {nhs_no}")
8989
SubjectDemographicUtil(page).update_subject_dob(nhs_no, False)
@@ -102,7 +102,7 @@ def test_compartment_6(page: Page, smokescreen_properties: dict) -> None:
102102
logging.info(f"Progressed episode for NHS number {nhs_no} based on result: LNPCP.")
103103

104104
# Younger patient - LNPCP Result
105-
logging.info("Processing LNPCP result for a younger subject")
105+
logging.info("LNPCP result for a younger subject")
106106
nhs_no = subjects_df["subject_nhs_number"].iloc[3]
107107
logging.info(f"Selected NHS number for younger subject: {nhs_no}")
108108
SubjectDemographicUtil(page).update_subject_dob(nhs_no, True)
@@ -117,7 +117,7 @@ def test_compartment_6(page: Page, smokescreen_properties: dict) -> None:
117117
logging.info(f"Progressed episode for NHS number {nhs_no} based on result: LNPCP.")
118118

119119
# Any patient - Normal Result
120-
logging.info("Processing Normal result for any age subject")
120+
logging.info("Normal result for any age subject")
121121
nhs_no_normal = subjects_df["subject_nhs_number"].iloc[4]
122122
logging.info(f"Selected NHS number for normal result: {nhs_no_normal}")
123123
InvestigationDatasetCompletion(page).complete_with_result(

0 commit comments

Comments
 (0)