Skip to content

Commit be2487e

Browse files
committed
Correcting file format issues
1 parent ea8cb19 commit be2487e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pages/organisations/list_all_organisations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def search_organisation_code(self, org_code: str) -> None:
4949
self.search_org_code.fill(org_code)
5050
self.search_org_code.press("Enter")
5151

52-
def verify_no_organisation_record_found(self, text: str) -> None:
52+
def verify_no_organisation_record_found(self, text: str) -> None:
5353
"""Verifies that no organisation record is found.
5454
Args:
5555
text (str): The text to verify is present indicating no records found. Example: "No organisation record found"

utils/oracle/oracle_specific_functions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -921,7 +921,7 @@ def delete_people_in_org_created_for_test(org_codes: list[str]) -> None:
921921
"""
922922
Deletes people in organisations for the given org codes.
923923
Must be run before deleting organisations due to foreign key constraints.
924-
Args:
924+
Args:
925925
org_codes (list[str]): A list of organisation codes to delete people in organisations for.
926926
"""
927927
placeholders = ", ".join([f":org{i}" for i in range(len(org_codes))])
@@ -971,7 +971,7 @@ def delete_organisations_created_for_test(org_codes: list[str]) -> None:
971971
def delete_sites_created_for_test(site_codes: list[str]) -> None:
972972
"""
973973
Deletes sites from the SITES table based on the given site codes.
974-
Args:
974+
Args:
975975
site_codes (list[str]): A list of site codes to delete.
976976
"""
977977
logging.info("Start: delete_sites_created_for_test(%s)", site_codes)

0 commit comments

Comments
 (0)