diff options
| author | Kevinthegreat <92656833+kevinthegreat1@users.noreply.github.com> | 2024-12-01 23:56:47 -0800 |
|---|---|---|
| committer | Aaron <51387595+AzureAaron@users.noreply.github.com> | 2024-12-08 16:10:15 -0500 |
| commit | c6f0b752245d38ce5be9c03d944d0c0a0cd23290 (patch) | |
| tree | f908d6229b33df24fd200e6a096ba0815cd92b7c /src/test/java | |
| parent | 07831905827fcb53080e0d3e048b1ef992318a8e (diff) | |
| download | Skyblocker-c6f0b752245d38ce5be9c03d944d0c0a0cd23290.tar.gz Skyblocker-c6f0b752245d38ce5be9c03d944d0c0a0cd23290.tar.bz2 Skyblocker-c6f0b752245d38ce5be9c03d944d0c0a0cd23290.zip | |
Optimize rendering boxes
Diffstat (limited to 'src/test/java')
| -rw-r--r-- | src/test/java/de/hysky/skyblocker/utils/waypoint/WaypointTest.java | 1 |
1 files changed, 0 insertions, 1 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 d8839951..897a2e1d 100644 --- a/src/test/java/de/hysky/skyblocker/utils/waypoint/WaypointTest.java +++ b/src/test/java/de/hysky/skyblocker/utils/waypoint/WaypointTest.java @@ -13,7 +13,6 @@ public class WaypointTest { void testDefaultConstructor() { Waypoint waypoint = new Waypoint(BlockPos.ORIGIN, () -> type, colorComponents); Assertions.assertEquals(BlockPos.ORIGIN, waypoint.pos); - Assertions.assertEquals(new Box(BlockPos.ORIGIN), waypoint.box); Assertions.assertEquals(type, waypoint.typeSupplier.get()); Assertions.assertEquals(0f, waypoint.colorComponents[0]); Assertions.assertEquals(0.5f, waypoint.colorComponents[1]); |
