On Mon, 18 Mar 2024 09:50:43 GMT, Tejesh R <t...@openjdk.org> wrote: >> Automated the Test `javax/swing/border/Test4129681.java` from manual as >> suggested in JBS description. >> Verified in CI system and its Green. The test has been verified for Metal >> L&F and the same is set explicitly.. > > Tejesh R has updated the pull request incrementally with one additional > commit since the last revision: > > Review updates
test/jdk/javax/swing/border/Test4129681.java line 77: > 75: } > 76: > 77: if (((double)correctColoredPixels / totalPixels * 100) <= > tolerance) { Minor: Suggestion: if (((double) correctColoredPixels / totalPixels * 100) <= tolerance) { ------------- PR Review Comment: https://git.openjdk.org/jdk/pull/18336#discussion_r1528412319