From 1cb6e5cd50862b47a15f73a9b7c79bf3f8a26f58 Mon Sep 17 00:00:00 2001 From: malik masis Date: Tue, 3 Jan 2023 11:17:46 +0300 Subject: [PATCH] fixed if statement --- docs/en/Tutorials/Part-4.md | 14 +++++++++++--- docs/en/Tutorials/Part-8.md | 6 ++++-- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/docs/en/Tutorials/Part-4.md b/docs/en/Tutorials/Part-4.md index 6ff2c38a8d..6abf572507 100644 --- a/docs/en/Tutorials/Part-4.md +++ b/docs/en/Tutorials/Part-4.md @@ -87,8 +87,12 @@ using Xunit; namespace Acme.BookStore.Books; - {{if DB=="Mongo"}} -[Collection(BookStoreTestConsts.CollectionDefinitionName)]{{end}} +{{if DB=="Mongo"}} + +[Collection(BookStoreTestConsts.CollectionDefinitionName)] + +{{end}} + public class BookAppService_Tests : BookStoreApplicationTestBase { private readonly IBookAppService _bookAppService; @@ -179,7 +183,11 @@ using Xunit; namespace Acme.BookStore.Books; {{if DB=="Mongo"}} -[Collection(BookStoreTestConsts.CollectionDefinitionName)]{{end}} + +[Collection(BookStoreTestConsts.CollectionDefinitionName)] + +{{end}} + public class BookAppService_Tests : BookStoreApplicationTestBase { private readonly IBookAppService _bookAppService; diff --git a/docs/en/Tutorials/Part-8.md b/docs/en/Tutorials/Part-8.md index f8615c2137..1bfa8bc627 100644 --- a/docs/en/Tutorials/Part-8.md +++ b/docs/en/Tutorials/Part-8.md @@ -484,9 +484,11 @@ using Shouldly; using Xunit; namespace Acme.BookStore.Authors; - {{if DB=="Mongo"}} -[Collection(BookStoreTestConsts.CollectionDefinitionName)]{{end}} + +[Collection(BookStoreTestConsts.CollectionDefinitionName)] + +{{end}} public class AuthorAppService_Tests : BookStoreApplicationTestBase { private readonly IAuthorAppService _authorAppService;