Skip to content

Commit 38989a4

Browse files
Reverting merge conflict overwrites and adding typing to a method.
1 parent 64c6b51 commit 38989a4

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

tests/bcss_tests.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,6 @@ episode_closed_date=22/09/2020
2525
# ----------------------------------
2626
# CALL AND RECALL TEST DATA
2727
# ----------------------------------
28-
daily_invitation_rate=6
28+
daily_invitation_rate=28
29+
fobt_daily_invitation_rate=6
2930
weekly_invitation_rate=130

tests/regression/call_and_recall/test_generate_fobt_invitation_regression.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def test_run_fobt_invitations_and_process_s1_batch(
4141
logging.info("Generating invitations based on the invitation plan")
4242
GenerateInvitationsPage(page).click_generate_invitations_button()
4343
GenerateInvitationsPage(page).wait_for_invitation_generation_complete(
44-
int(general_properties["daily_invitation_rate"])
44+
int(general_properties["fobt_daily_invitation_rate"])
4545
)
4646
logging.info("Invitations generated successfully")
4747

utils/table_util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ def get_cell_value(self, column_name: str, row_index: int) -> str:
235235
f"No cell found at column '{column_name}' and row index {row_index}"
236236
)
237237

238-
def assert_surname_in_table(self, surname_pattern):
238+
def assert_surname_in_table(self, surname_pattern: str) -> None:
239239
"""
240240
Asserts that a surname matching the given pattern exists in the table.
241241
Args:

0 commit comments

Comments
 (0)