Skip to content

Commit

Permalink
Remove unused namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
Nabi Karampour authored and Nabi Karampour committed Jun 17, 2024
1 parent 688f55d commit 204dbc3
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
using Blogger.Application.Articles.GetArticles;
using Blogger.Domain.ArticleAggregate;
using System.Reflection.Metadata;

using Blogger.IntegrationTests.Fixtures;
using Blogger.Application.Articles.GetArticle;
using Blogger.Infrastructure.Persistence.Repositories;
using Blogger.IntegrationTests.Fixtures;

using FluentAssertions;

namespace Blogger.IntegrationTests.Articles;
Expand Down Expand Up @@ -73,7 +71,7 @@ public async Task Handle_ShouldReturnArticlesWithTitle_WhenWhenPassTitle()
articleRepository.Add(article_2);
await articleRepository.SaveChangesAsync(CancellationToken.None);

var request = new GetArticlesQuery { PageNumber = 1, PageSize = 10, Title= "Title 1" };
var request = new GetArticlesQuery { PageNumber = 1, PageSize = 10, Title = "Title 1" };

// Act
var response = await _sut.Handle(request, CancellationToken.None);
Expand Down

0 comments on commit 204dbc3

Please sign in to comment.