Skip to content

Commit

Permalink
Fixed tests of empty slots
Browse files Browse the repository at this point in the history
  • Loading branch information
fulminazzo committed Apr 18, 2024
1 parent edf9d04 commit c3e58d2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ void testOpenPage() {
int[] tmpSlots = slots[i];
for (int s = 0; s < tmpSlots.length; s++) {
int ind = s;
if (i > 0) ind += slots[i - 1].length;
for (int k = i; k > 0; k--) ind += slots[k - 1].length;
double d = data[ind];
expected.setContents(tmpSlots[s], cc.apply(d));
}
Expand Down

0 comments on commit c3e58d2

Please sign in to comment.