Skip to content

Commit 8984752

Browse files
code review fixes
1 parent 26647e4 commit 8984752

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

TransactionProcessor.Aggregates.Tests/MerchantStatementForDateAggregateTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ public void MerchantStatementForDateAggregate_AddWithdrawalToStatement_Withdrawa
115115
TestData.StatementDate,
116116
TestData.EventId1,
117117
TestData.EstateId,
118-
TestData.MerchantId, new Withdrawal()
118+
TestData.MerchantId, new Withdrawal
119119
{
120120
WithdrawalDateTime = TestData.WithdrawalDateTime,
121121
Amount = TestData.WithdrawalAmount.Value,

TransactionProcessor.BusinessLogic.Tests/Services/MerchantStatementDomainServiceTests.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ namespace TransactionProcessor.BusinessLogic.Tests.Services;
2121

2222
public class MerchantStatementDomainServiceTests {
2323

24-
private Mock<IAggregateService> AggregateService;
25-
private Mock<IStatementBuilder> StatementBuilder;
26-
private Mock<IMessagingServiceClient> MessagingServiceClient;
27-
private Mock<ISecurityServiceClient> SecurityServiceClient;
28-
private MerchantStatementDomainService DomainService;
24+
private readonly Mock<IAggregateService> AggregateService;
25+
private readonly Mock<IStatementBuilder> StatementBuilder;
26+
private readonly Mock<IMessagingServiceClient> MessagingServiceClient;
27+
private readonly Mock<ISecurityServiceClient> SecurityServiceClient;
28+
private readonly MerchantStatementDomainService DomainService;
2929
public MerchantStatementDomainServiceTests() {
3030
this.AggregateService = new Mock<IAggregateService>();
3131
this.StatementBuilder = new Mock<IStatementBuilder>();

0 commit comments

Comments
 (0)