diff --git a/force-app/main/default/classes/RD2_ApiService_Extended_TEST.cls b/force-app/main/default/classes/RD2_ApiService_Extended_TEST.cls index 666dd9ca31..03dc6d2317 100644 --- a/force-app/main/default/classes/RD2_ApiService_Extended_TEST.cls +++ b/force-app/main/default/classes/RD2_ApiService_Extended_TEST.cls @@ -61,18 +61,20 @@ private class RD2_ApiService_Extended_TEST { insert contact; // Create multiple recurring donations for testing - insert getEnhancedRecurringDonationBuilder(contact.Id) + npe03__Recurring_Donation__c rd1 = getEnhancedRecurringDonationBuilder(contact.Id) .build(); - insert getEnhancedRecurringDonationBuilder(contact.Id) + npe03__Recurring_Donation__c rd2 = getEnhancedRecurringDonationBuilder(contact.Id) .withAmount(200) .withInstallmentPeriod(RD2_Constants.INSTALLMENT_PERIOD_FIRST_AND_FIFTEENTH) .build(); - - insert getEnhancedRecurringDonationBuilder(contact.Id) + + npe03__Recurring_Donation__c rd3 = getEnhancedRecurringDonationBuilder(contact.Id) .withAmount(150) .withInstallmentPeriod(RD2_Constants.INSTALLMENT_PERIOD_WEEKLY) .build(); + + insert new List{rd1, rd2, rd3}; } // ===== HIGH PRIORITY TEST SCENARIOS ===== diff --git a/robot/Cumulus/tests/browser/contacts_accounts/create_household.robot b/robot/Cumulus/tests/browser/contacts_accounts/create_household.robot index fa4fd8c08a..0bed9300fa 100644 --- a/robot/Cumulus/tests/browser/contacts_accounts/create_household.robot +++ b/robot/Cumulus/tests/browser/contacts_accounts/create_household.robot @@ -30,7 +30,7 @@ Setup Variables Create Household With Name Only [Documentation] Creates a contact with lastname and firstname. Verifies that the toast message appears ... Verifies that contact is created and displays under recently viewed contacts - [tags] feature:Contacts and Accounts unit + [tags] feature:Contacts and Accounts unit unstable #Create contact with only name Go To Page Listing Contact @@ -56,7 +56,7 @@ Create Household With additional details [Documentation] Create a contact with lastname, firstname and email and click save & new and ... create another contact with name and address. Verifies that the toast message appears ... Verifies that contacts created and displays under recently viewed contacts - [tags] feature:Contacts and Accounts + [tags] feature:Contacts and Accounts unstable # Create a contact with name and email Go To Page Listing Contact Click Object Button New