Skip to content

Commit 430f65e

Browse files
committed
chore(tests): fixup
1 parent d9855cb commit 430f65e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

api/src/test/java/net/kyori/adventure/util/HSVLikeTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
import net.kyori.adventure.text.format.TextColor;
3131
import org.jspecify.annotations.NullMarked;
3232
import org.junit.jupiter.api.Test;
33+
3334
import static org.junit.jupiter.api.Assertions.assertArrayEquals;
3435
import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
3536
import static org.junit.jupiter.api.Assertions.assertEquals;
@@ -59,7 +60,7 @@ private static void assertRgbToHsvConversionRoughlyMatchesJavaAwtColor(final RGB
5960
);
6061
}
6162

62-
private static float[] roundFloats(final float [] floats) {
63+
private static float[] roundFloats(final float[] floats) {
6364
final float[] result = new float[floats.length];
6465
for (int i = 0; i < floats.length; i++) {
6566
result[i] = BigDecimal.valueOf(floats[i]).setScale(7, RoundingMode.UP).floatValue();

0 commit comments

Comments
 (0)