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: 646c200
  • Loading branch information
GoeLin committed Oct 4, 2021
1 parent 2990ff0 commit 09ad2c0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,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 09ad2c0

@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.