File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
tests/Blogger.IntegrationTests/Articles Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 11using Blogger . Application . Articles . GetArticles ;
22using Blogger . Domain . ArticleAggregate ;
3- using System . Reflection . Metadata ;
4-
5- using Blogger . IntegrationTests . Fixtures ;
6- using Blogger . Application . Articles . GetArticle ;
73using Blogger . Infrastructure . Persistence . Repositories ;
4+ using Blogger . IntegrationTests . Fixtures ;
5+
86using FluentAssertions ;
97
108namespace Blogger . IntegrationTests . Articles ;
@@ -73,7 +71,7 @@ public async Task Handle_ShouldReturnArticlesWithTitle_WhenWhenPassTitle()
7371 articleRepository . Add ( article_2 ) ;
7472 await articleRepository . SaveChangesAsync ( CancellationToken . None ) ;
7573
76- var request = new GetArticlesQuery { PageNumber = 1 , PageSize = 10 , Title = "Title 1" } ;
74+ var request = new GetArticlesQuery { PageNumber = 1 , PageSize = 10 , Title = "Title 1" } ;
7775
7876 // Act
7977 var response = await _sut . Handle ( request , CancellationToken . None ) ;
You can’t perform that action at this time.
0 commit comments