From 8945e1588ad672275637d6fcab8a674ec5dd2a7c Mon Sep 17 00:00:00 2001 From: David Esposito Date: Thu, 8 Aug 2024 11:58:36 -0400 Subject: [PATCH] Fixes #487 - uses the explicit relationship name rather than the SObject inference (deprecated) method for resolving the relationship name --- .../apex-common/test/classes/fflib_SObjectSelectorTest.cls | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sfdx-source/apex-common/test/classes/fflib_SObjectSelectorTest.cls b/sfdx-source/apex-common/test/classes/fflib_SObjectSelectorTest.cls index c89b19e7fb..68b78e2069 100644 --- a/sfdx-source/apex-common/test/classes/fflib_SObjectSelectorTest.cls +++ b/sfdx-source/apex-common/test/classes/fflib_SObjectSelectorTest.cls @@ -619,7 +619,7 @@ private with sharing class fflib_SObjectSelectorTest fflib_QueryFactory qf = newQueryFactory(); - oSel.addQueryFactorySubselect(qf); + oSel.addQueryFactorySubselect(qf,'Opportunities'); return qf.toSOQL(); }