diff --git a/fabric/src/test/java/net/minecraft/world/level/block/state/BlockStateCacheTest.java b/fabric/src/test/java/net/minecraft/world/level/block/state/BlockStateCacheTest.java index c6884fe2..cee7768c 100644 --- a/fabric/src/test/java/net/minecraft/world/level/block/state/BlockStateCacheTest.java +++ b/fabric/src/test/java/net/minecraft/world/level/block/state/BlockStateCacheTest.java @@ -18,14 +18,13 @@ public class BlockStateCacheTest { } /** - * Initially, the cache should be invalid, and null. + * Initially, the cache should be invalid. */ @Test @Order(1) public void testCacheNullInitially() { BlockState stoneBlock = Blocks.STONE.defaultBlockState(); assertTrue(((IBlockState)stoneBlock).isCacheInvalid()); - assertNull(stoneBlock.cache); } /**