Skip to content

Commit

Permalink
Add field to test queries
Browse files Browse the repository at this point in the history
  • Loading branch information
aheber committed Nov 25, 2024
1 parent b340d9f commit 9961585
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dlrs/main/classes/RollupCalculateJobTest.cls
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ private class RollupCalculateJobTest {
static void testRunBatchWithCustPermDisable() {
// find the profile that has access to the Custom Permission we want to use to check (if it even exists in the system)
List<SetupEntityAccess> permSetsWithAccess = [
SELECT ParentId
SELECT ParentId, SetupEntityId
FROM SetupEntityAccess
WHERE
SetupEntityId IN (
Expand Down
2 changes: 1 addition & 1 deletion dlrs/main/classes/RollupJobTest.cls
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ private class RollupJobTest {
static void testDisabledSpecificRollupRunJob() {
// find the profile that has access to the Custom Permission we want to use to check (if it even exists in the system)
List<SetupEntityAccess> permSetsWithAccess = [
SELECT ParentId
SELECT ParentId, SetupEntityId
FROM SetupEntityAccess
WHERE
SetupEntityId IN (
Expand Down

0 comments on commit 9961585

Please sign in to comment.