File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/test/java/it/gov/pagopa/idpay/transactions/service Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 11package it .gov .pagopa .idpay .transactions .service ;
22
33import it .gov .pagopa .common .web .exception .ClientExceptionWithBody ;
4+ import it .gov .pagopa .idpay .transactions .connector .rest .MerchantRestClient ;
45import it .gov .pagopa .idpay .transactions .dto .mapper .ReportMapper ;
56import it .gov .pagopa .idpay .transactions .enums .ReportStatus ;
67import it .gov .pagopa .idpay .transactions .enums .RewardBatchAssignee ;
78import it .gov .pagopa .idpay .transactions .model .Report ;
8- import it .gov .pagopa .idpay .transactions .repository .MerchantRepository ;
99import it .gov .pagopa .idpay .transactions .repository .ReportRepository ;
1010import org .junit .jupiter .api .BeforeEach ;
1111import org .junit .jupiter .api .Test ;
@@ -32,7 +32,7 @@ class ReportServiceImplTest {
3232 private ReportRepository reportRepository ;
3333
3434 @ Mock
35- private MerchantRepository merchantRepository ;
35+ private MerchantRestClient merchantRestClient ;
3636
3737 @ Mock
3838 private ReportMapper reportMapper ;
@@ -45,7 +45,7 @@ class ReportServiceImplTest {
4545
4646 @ BeforeEach
4747 void setup () {
48- service = new ReportServiceImpl (reportRepository , merchantRepository , reportMapper );
48+ service = new ReportServiceImpl (reportRepository , merchantRestClient , reportMapper );
4949 }
5050
5151 @ Test
You can’t perform that action at this time.
0 commit comments