From 16afbd1ce1d1569dd24f738bd07366c95406e356 Mon Sep 17 00:00:00 2001 From: Glliza Date: Thu, 27 Feb 2025 14:34:10 +0400 Subject: [PATCH] =?UTF-8?q?=D0=A2=D0=B5=D1=81=D1=82=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../BuyerBusinessLogicContractTests.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/PuferFishContracts/PuferFishTests/BusinessLogicsContractsTests/BuyerBusinessLogicContractTests.cs b/PuferFishContracts/PuferFishTests/BusinessLogicsContractsTests/BuyerBusinessLogicContractTests.cs index 4d72150..45060b5 100644 --- a/PuferFishContracts/PuferFishTests/BusinessLogicsContractsTests/BuyerBusinessLogicContractTests.cs +++ b/PuferFishContracts/PuferFishTests/BusinessLogicsContractsTests/BuyerBusinessLogicContractTests.cs @@ -37,9 +37,9 @@ internal class BuyerBusinessLogicContractTests //Arrange var listOriginal = new List() { -new(Guid.NewGuid().ToString(), "fio 1", "+7-111-111-11-11", 0), -new(Guid.NewGuid().ToString(), "fio 2", "+7-555-444-33-23", 10), -new(Guid.NewGuid().ToString(), "fio 3", "+7-777-777-7777", 0),}; + new(Guid.NewGuid().ToString(), "fio 1", "+7-111-111-11-11", 0), + new(Guid.NewGuid().ToString(), "fio 2", "+7-555-444-33-23", 10), + new(Guid.NewGuid().ToString(), "fio 3", "+7-777-777-7777", 0),}; _buyerStorageContract.Setup(x => x.GetList()).Returns(listOriginal); //Act var list = _buyerBusinessLogicContract.GetAllBuyers();