From d42c79e82b0372353a6663f8a676a27c8a0df80b Mon Sep 17 00:00:00 2001 From: Enis Necipoglu Date: Tue, 19 Sep 2023 11:17:43 +0300 Subject: [PATCH] Change test method names --- .../Pages/PagePublicAppService_Tests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/cms-kit/test/Volo.CmsKit.Application.Tests/Pages/PagePublicAppService_Tests.cs b/modules/cms-kit/test/Volo.CmsKit.Application.Tests/Pages/PagePublicAppService_Tests.cs index 299ec64213..c7d8927499 100644 --- a/modules/cms-kit/test/Volo.CmsKit.Application.Tests/Pages/PagePublicAppService_Tests.cs +++ b/modules/cms-kit/test/Volo.CmsKit.Application.Tests/Pages/PagePublicAppService_Tests.cs @@ -35,7 +35,7 @@ public class PagePublicAppService_Tests : CmsKitApplicationTestBase } [Fact] - public async Task DoesSlugExistAsync_ShouldReturnTrue_WhenExist() + public async Task DoesSlugExistAsync_ShouldReturnTrue_WhenExists() { var result = await _pageAppService.DoesSlugExistAsync(_data.Page_1_Slug); @@ -43,7 +43,7 @@ public class PagePublicAppService_Tests : CmsKitApplicationTestBase } [Fact] - public async Task DoesSlugExistAsync_ShouldReturnFalse_WhenExist() + public async Task DoesSlugExistAsync_ShouldReturnFalse_WhenDoesntExist() { var result = await _pageAppService.DoesSlugExistAsync("not-exist-url");