Skip to content

Commit

Permalink
8256152: tests fail because of ambiguous method resolution
Browse files Browse the repository at this point in the history
Backport-of: 646c20022c73258bebf7c55b3e1992b62f5de042
  • Loading branch information
zzambers committed Mar 25, 2024
1 parent 6ba9f58 commit d23bbdd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public Object[][] createSizes() {
private static void assertEqualsListDoubleArray(List<Double> list, double[] array) {
assertEquals(list.size(), array.length);
for (int i = 0; i < array.length; i++)
assertEquals(array[i], list.get(i));
assertEquals(array[i], (double) list.get(i));
}

private List<Double> toList(double[] a) {
Expand Down

1 comment on commit d23bbdd

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.