File tree Expand file tree Collapse file tree 2 files changed +8
-9
lines changed
src/test/java/com/tecacet/finance/service/calendar Expand file tree Collapse file tree 2 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 1515
1616 <properties >
1717 <commons-io .version>2.7</commons-io .version>
18- <jackson-databind .version>2.13.4.1</jackson-databind .version>
19- <jackson-datatype .version>2.13.4</jackson-datatype .version>
18+ <jackson .version>2.14.2</jackson .version>
2019 <jacoco .version>0.8.7</jacoco .version>
2120 <jflat .version>1.3.8</jflat .version>
2221 <junit .version>[4.13.1,)</junit .version>
5251 <dependency >
5352 <groupId >com.fasterxml.jackson.core</groupId >
5453 <artifactId >jackson-databind</artifactId >
55- <version >${jackson-databind.version} </version >
54+ <version >${jackson.version} </version >
55+ </dependency >
56+ <dependency >
57+ <groupId >com.fasterxml.jackson.datatype</groupId >
58+ <artifactId >jackson-datatype-jsr310</artifactId >
59+ <version >${jackson.version} </version >
5660 </dependency >
5761 <dependency >
5862 <groupId >org.projectlombok</groupId >
5963 <artifactId >lombok</artifactId >
6064 <version >${lombok.version} </version >
6165 <scope >provided</scope >
6266 </dependency >
63- <dependency >
64- <groupId >com.fasterxml.jackson.datatype</groupId >
65- <artifactId >jackson-datatype-jsr310</artifactId >
66- <version >${jackson-datatype.version} </version >
67- </dependency >
6867 <dependency >
6968 <groupId >org.slf4j</groupId >
7069 <artifactId >slf4j-api</artifactId >
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ public class EnricoHolidayServiceTest {
2121 @ Test
2222 public void getSupportedCountries () throws IOException {
2323 List <HolidaySupport > countries = holidayService .getSupportedCountries ();
24- assertEquals (54 , countries .size ());
24+ assertEquals (55 , countries .size ());
2525 HolidaySupport holidaySupport = countries .get (1 );
2626 Country country = holidaySupport .getCountry ();
2727 assertEquals ("aus" , country .getCountryCode ());
You can’t perform that action at this time.
0 commit comments