Skip to content

Commit

Permalink
Merge 234d8f9 into feature/238
Browse files Browse the repository at this point in the history
  • Loading branch information
salesforce-org-metaci[bot] committed Apr 17, 2024
2 parents 302619d + 234d8f9 commit 34ace95
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion force-app/main/default/classes/CON_ContactMerge_TEST.cls
Original file line number Diff line number Diff line change
Expand Up @@ -967,7 +967,8 @@ public class CON_ContactMerge_TEST {
}

private static User getReadOnlyUser() {
return [SELECT Id FROM User WHERE Profile.Name = :UTIL_UnitTestData_TEST.PROFILE_READONLY_USER LIMIT 1];
return [SELECT Id FROM User WHERE Profile.Name = :UTIL_UnitTestData_TEST.PROFILE_READONLY_USER
AND IsActive = TRUE LIMIT 1];
}

private static void selectSearchResults(List<CON_ContactMerge_CTRL.ContactWrapper> searchResults) {
Expand Down
2 changes: 1 addition & 1 deletion force-app/main/default/lwc/utilCommon/utilCommon.js
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@ const nonePicklistOption = () => {
return createPicklistOption(commonLabelNone, commonLabelNone);
}

const asyncInterval = async (callback, milliseconds, maxNumberOfIntervals = 5) => {
const asyncInterval = async (callback, milliseconds, maxNumberOfIntervals = 20) => {
return new Promise((resolve, reject) => {
const intervalId = setInterval(async () => {
if (await callback()) {
Expand Down

0 comments on commit 34ace95

Please sign in to comment.