diff options
author | Kevinthegreat <92656833+kevinthegreat1@users.noreply.github.com> | 2023-11-13 20:45:27 -0500 |
---|---|---|
committer | Kevinthegreat <92656833+kevinthegreat1@users.noreply.github.com> | 2023-11-17 10:28:30 -0500 |
commit | 9a86f3c5297c0e597abce80222db8ef9c42fbe8e (patch) | |
tree | b7bdc9732e826e9a7ebb2615e9adf4bdb3eff17b /src/test/java/de/hysky/skyblocker/utils | |
parent | cf18647e45afd41995bf1a06d1a0f9862e56e5fc (diff) | |
download | Skyblocker-9a86f3c5297c0e597abce80222db8ef9c42fbe8e.tar.gz Skyblocker-9a86f3c5297c0e597abce80222db8ef9c42fbe8e.tar.bz2 Skyblocker-9a86f3c5297c0e597abce80222db8ef9c42fbe8e.zip |
Refactor more waypoints
Diffstat (limited to 'src/test/java/de/hysky/skyblocker/utils')
-rw-r--r-- | src/test/java/de/hysky/skyblocker/utils/waypoint/WaypointTest.java | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/test/java/de/hysky/skyblocker/utils/waypoint/WaypointTest.java b/src/test/java/de/hysky/skyblocker/utils/waypoint/WaypointTest.java index b3be64b7..d8839951 100644 --- a/src/test/java/de/hysky/skyblocker/utils/waypoint/WaypointTest.java +++ b/src/test/java/de/hysky/skyblocker/utils/waypoint/WaypointTest.java @@ -31,12 +31,6 @@ public class WaypointTest { } @Test - void testAlphaConstructor() { - Waypoint waypoint = new Waypoint(BlockPos.ORIGIN, () -> type, colorComponents, 1f); - Assertions.assertEquals(1f, waypoint.alpha); - } - - @Test void testLineWidthConstructor() { Waypoint waypoint = new Waypoint(BlockPos.ORIGIN, () -> type, colorComponents, Waypoint.DEFAULT_HIGHLIGHT_ALPHA, 10f); Assertions.assertEquals(10f, waypoint.lineWidth); |