Skip to content

Commit d86c812

Browse files
Fix remaining merchant mapper test ambiguity
Co-authored-by: StuartFerguson <[email protected]>
1 parent 648991e commit d86c812

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

TransactionProcessorACL.Tests/General/ModelFactoryTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ public void ModelFactory_ConvertFrom_MerchantResponse_IsConverted()
162162
{
163163
ModelFactory modelFactory = new ModelFactory();
164164

165-
MerchantResponse model = new MerchantResponse
165+
Models.MerchantResponse model = new Models.MerchantResponse
166166
{
167167
EstateId = TestData.EstateId,
168168
MerchantId = TestData.MerchantId,
@@ -171,7 +171,7 @@ public void ModelFactory_ConvertFrom_MerchantResponse_IsConverted()
171171
MerchantName = TestData.MerchantName,
172172
MerchantReference = "Reference",
173173
NextStatementDate = TestData.GeneratedDateTime,
174-
SettlementSchedule = SettlementSchedule.Monthly,
174+
SettlementSchedule = Models.SettlementSchedule.Monthly,
175175
Addresses = new List<Models.AddressResponse>
176176
{
177177
new Models.AddressResponse
@@ -250,7 +250,7 @@ public void ModelFactory_ConvertFrom_MerchantResponse_NullValue_IsConverted()
250250
{
251251
ModelFactory modelFactory = new ModelFactory();
252252

253-
MerchantResponse model = null;
253+
Models.MerchantResponse model = null;
254254
DataTransferObjects.Responses.MerchantResponse dto = modelFactory.ConvertFrom(model);
255255

256256
dto.ShouldBeNull();

0 commit comments

Comments
 (0)