Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1725,7 +1725,7 @@ void testStoreSeasonalLevel() throws Exception {
ZonedDateTime levelDate = ZonedDateTime.ofInstant(Instant.parse("2024-01-01T00:00:00Z"), ZoneId.of("UTC"));
List<SeasonalValueBean> values = new ArrayList<>();
int numValues = 12;
for (int i = 1; i <= numValues; i++) {
for (int i = 0; i < numValues; i++) {
values.add(new SeasonalValueBean.Builder()
.withValue(i + 1.0)
.withOffsetMonths(i)
Expand Down Expand Up @@ -1790,7 +1790,7 @@ void testRetrieveAllSeasonalLevel() throws Exception {
ZonedDateTime levelDate = ZonedDateTime.ofInstant(Instant.parse("2024-01-01T00:00:00Z"), ZoneId.of("UTC"));
List<SeasonalValueBean> values = new ArrayList<>();
int numValues = 12;
for (int i = 1; i <= numValues; i++) {
for (int i = 0; i < numValues; i++) {
values.add(new SeasonalValueBean.Builder()
.withValue(i + 1.0)
.withOffsetMonths(i)
Expand Down
Loading