Skip to content

Commit 1c01bc3

Browse files
Fixing vale issues
1 parent f50b2c4 commit 1c01bc3

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

docs/utility-guides/DynamicLocatorRetriever.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Utility Guide: Dynamic Locator Retriever
22

33
The Dynamic Locator Retriever utility allows for selecting different locators dynamically.<br>
4-
For example, on the investigation dataset, if we want to select the input locator for the `Start of intubation time` field, we can do this by providing the util with the name of the field
4+
For example, on the investigation dataset, if we want to select the input locator for the `Start of intubation time` field, we can do this by providing the utility with the name of the field
55

66
DynamicLocatorRetriever(page).populate_input_locator_for_field(
77
"Start of intubation time", "09:00"
@@ -34,7 +34,7 @@ This will allow you to use the following methods:
3434

3535
### Required Args
3636

37-
populate_input_locator_for_field / populate_select_locator_for_field
37+
`populate_input_locator_for_field` / `populate_select_locator_for_field`
3838

3939
- text:
4040
- Type: `str`
@@ -43,7 +43,7 @@ populate_input_locator_for_field / populate_select_locator_for_field
4343
- Type: `str`
4444
- The value or option you want to input / select (depending on what method is called)
4545

46-
populate_input_locator_for_field_inside_div / populate_select_locator_for_field_inside_div
46+
`populate_input_locator_for_field_inside_div` / `populate_select_locator_for_field_inside_div`
4747

4848
- text:
4949
- Type: `str`

tests/smokescreen/test_compartment_6.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ def test_compartment_6(page: Page, smokescreen_properties: dict) -> None:
311311

312312
# This needs to be repeated for two subjects, one old and one not - High Risk Result
313313
# Older patient
314-
nhs_no = "9707238623"
314+
nhs_no = "9765492782"
315315
go_to_investigation_datasets_page(page, nhs_no)
316316

317317
# The following code is on the investigation datasets page
@@ -326,7 +326,7 @@ def test_compartment_6(page: Page, smokescreen_properties: dict) -> None:
326326
handover_subject_to_symptomatic_care(page)
327327

328328
# Younger patient
329-
nhs_no = "9526262042"
329+
nhs_no = "9801085703"
330330
go_to_investigation_datasets_page(page, nhs_no)
331331

332332
# The following code is on the investigation datasets page
@@ -356,7 +356,7 @@ def test_compartment_6(page: Page, smokescreen_properties: dict) -> None:
356356

357357
# This needs to be repeated for two subjects, one old and one not - LNPCP Result
358358
# Older patient
359-
nhs_no = "9764755232"
359+
nhs_no = "9840970194"
360360
go_to_investigation_datasets_page(page, nhs_no)
361361

362362
# The following code is on the investigation datasets page
@@ -371,7 +371,7 @@ def test_compartment_6(page: Page, smokescreen_properties: dict) -> None:
371371
handover_subject_to_symptomatic_care(page)
372372

373373
# Younger patient
374-
nhs_no = "9680451623"
374+
nhs_no = "9717136637"
375375
go_to_investigation_datasets_page(page, nhs_no)
376376

377377
# The following code is on the investigation datasets page
@@ -399,7 +399,7 @@ def test_compartment_6(page: Page, smokescreen_properties: dict) -> None:
399399
)
400400

401401
# This needs to be repeated for 1 subject, age does not matter - Normal Result
402-
nhs_no_normal = "9823638365"
402+
nhs_no_normal = "9673858853"
403403
go_to_investigation_datasets_page(page, nhs_no_normal)
404404

405405
# The following code is on the investigation datasets page

0 commit comments

Comments
 (0)