Skip to content

Commit db641f9

Browse files
committed
fix: typo on opportunities
1 parent c08cf01 commit db641f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sfdx-source/apex-common/test/classes/fflib_ApplicationTest.cls

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ private class fflib_ApplicationTest
350350
Selector.setMock(selectorMock);
351351

352352
// When
353-
List<Opportunity> pportunities =
353+
List<Opportunity> opportunities =
354354
new List<Opportunity>
355355
{ new Opportunity(
356356
Id = testOpportunityId,
@@ -360,7 +360,7 @@ private class fflib_ApplicationTest
360360
new Opportunity(
361361
Id = testOpportunityId,
362362
Name = 'Test Opportunity 2') };
363-
List<Account> assertAccounts = Selector.selectByRelationship(pportunities, Opportunity.AccountId);
363+
List<Account> assertAccounts = Selector.selectByRelationship(opportunities, Opportunity.AccountId);
364364

365365
// Then
366366
Assert.isInstanceOfType(Selector.newInstance(Account.SObjectType), fflib_SObjectMocks.SObjectSelector.class);

0 commit comments

Comments
 (0)