Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
larsgrefer committed Oct 13, 2024
1 parent a4f047f commit fc03297
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,16 @@ class ColorUtilTest {
private static final Color rgbRed = Color.newBuilder()
.setSpace("rgb")
.setChannel1(255)
.setChannel2(0)
.setChannel3(0)
.setAlpha(1d)
.build();

private static final Color rgbBlack = Color.newBuilder()
.setSpace("rgb")
.setChannel1(0)
.setChannel2(0)
.setChannel3(0)
.setAlpha(1d)
.build();

Expand Down

0 comments on commit fc03297

Please sign in to comment.