Skip to content

Commit a96aae1

Browse files
committed
fixed test_create_invitation_plan_weekly_rate
1 parent 6f9b488 commit a96aae1

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

tests/bcss_tests.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ episode_closed_date=22/09/2020
2626
# CALL AND RECALL TEST DATA
2727
# ----------------------------------
2828
daily_invitation_rate=28
29-
weekly_invitation_rate=28
29+
weekly_invitation_rate=130

tests/regression/call_and_recall/test_create_a_plan_regression.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,12 @@ def test_create_a_plan_set_daily_rate(page: Page, general_properties: dict) -> N
4747
# And I click the "Update" button
4848
CreateAPlanPage(page).click_update_button()
4949

50-
# Then the Weekly Invitation Rate for weeks 1 to 83 is set correctly
50+
# Then the Weekly Invitation Rate for weeks 1 to 50 is set correctly
5151
# based on a set all daily rate of 28
5252
CreateAPlanPage(page).verify_weekly_invitation_rate_for_weeks(1, 50, "140")
5353

5454

55+
@pytest.mark.wip
5556
@pytest.mark.regression
5657
@pytest.mark.call_and_recall
5758
def test_create_invitation_plan_weekly_rate(
@@ -82,11 +83,8 @@ def test_create_invitation_plan_weekly_rate(
8283
# And I click the "Update" button
8384
CreateAPlanPage(page).click_update_button()
8485

85-
# And I click the "Save" button
86-
CreateAPlanPage(page).click_save_button()
87-
88-
# And the Weekly Invitation Rate for weeks 1 to 83 is set to the set all weekly rate of 130
89-
CreateAPlanPage(page).verify_weekly_invitation_rate_for_weeks(1, 83, "130")
86+
# And the Weekly Invitation Rate for weeks 1 to 50 is set to the set all weekly rate of 130
87+
CreateAPlanPage(page).verify_weekly_invitation_rate_for_weeks(1, 50, "130")
9088

9189

9290
@pytest.mark.regression

0 commit comments

Comments
 (0)