@@ -332,7 +332,7 @@ public async Task GivenListAllCachorrosAdotadosAsync_WhenExistsCachorrosAdotados
332
332
var cachorrosAdotados = _cachorroDtoFixture . CreateManyCachorroDtoWithTutorDto ( 40 ) ;
333
333
334
334
_cachorroAppServiceMock . Setup ( repo => repo . GetByKeyAsync (
335
- It . IsAny < Expression < Func < Domain . Aggregates . Cachorro . Entities . Cachorro , bool > > > ( ) ,
335
+ It . IsAny < Expression < Func < CachorroDto , bool > > > ( ) ,
336
336
It . IsAny < CancellationToken > ( ) ) )
337
337
. ReturnsAsync ( cachorrosAdotados ) ;
338
338
@@ -357,7 +357,7 @@ public async Task GivenListAllCachorrosAdotadosAsync_WhenDontExistsCachorrosAdot
357
357
{
358
358
// Arrange
359
359
_cachorroAppServiceMock . Setup ( repo => repo . GetByKeyAsync (
360
- It . IsAny < Expression < Func < Domain . Aggregates . Cachorro . Entities . Cachorro , bool > > > ( ) ,
360
+ It . IsAny < Expression < Func < CachorroDto , bool > > > ( ) ,
361
361
It . IsAny < CancellationToken > ( ) ) )
362
362
. ReturnsAsync ( new List < CachorroDto > ( ) ) ;
363
363
@@ -382,7 +382,7 @@ public async Task GivenListAllCachorrosParaAdocaoAsync_WhenCachorrosExistis_Than
382
382
var cachorrosParaAdocao = _cachorroDtoFixture . CreateManyCachorroDtoWithoutTutorDto ( 40 ) ;
383
383
384
384
_cachorroAppServiceMock . Setup ( repo => repo . GetByKeyAsync (
385
- It . IsAny < Expression < Func < Domain . Aggregates . Cachorro . Entities . Cachorro , bool > > > ( ) ,
385
+ It . IsAny < Expression < Func < CachorroDto , bool > > > ( ) ,
386
386
It . IsAny < CancellationToken > ( ) ) )
387
387
. ReturnsAsync ( cachorrosParaAdocao ) ;
388
388
@@ -404,7 +404,7 @@ public async Task GivenListAllCachorrosParaAdocaoAsync_WhenCachorrosDontExistis_
404
404
{
405
405
// Arrange
406
406
_cachorroAppServiceMock . Setup ( repo => repo . GetByKeyAsync (
407
- It . IsAny < Expression < Func < Domain . Aggregates . Cachorro . Entities . Cachorro , bool > > > ( ) ,
407
+ It . IsAny < Expression < Func < CachorroDto , bool > > > ( ) ,
408
408
It . IsAny < CancellationToken > ( ) ) )
409
409
. ReturnsAsync ( new List < CachorroDto > ( ) ) ;
410
410
0 commit comments