Skip to content

Commit

Permalink
PAGOPA-1745 fixing junit
Browse files Browse the repository at this point in the history
  • Loading branch information
FedericoRuzzier committed Jun 11, 2024
1 parent 2dd5953 commit 0edba5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/it/gov/pagopa/reporting/RetrieveFlowsTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import javax.xml.datatype.DatatypeFactory;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.time.LocalDateTime;
import java.time.LocalDate;
import java.util.Date;
import java.util.GregorianCalendar;
import java.util.List;
Expand Down Expand Up @@ -112,7 +112,7 @@ void runKoTest() throws Exception {
.build()
);
CacheResponse cacheResponse = CacheResponse.builder()
.retrieveDate(LocalDateTime.now())
.retrieveDate(LocalDate.now())
.creditorInstitutionStations(creditorInstitutionStations)
.stations(stations)
.build();
Expand Down

0 comments on commit 0edba5d

Please sign in to comment.