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();