Skip to content

Commit 0f1f084

Browse files
committed
Update ItemStackDataComponentEqualsTest
1 parent 0d8dad6 commit 0f1f084

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

paper-server/src/test/java/io/papermc/paper/item/ItemStackDataComponentEqualsTest.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import io.papermc.paper.datacomponent.DataComponentTypes;
44
import java.util.Set;
5+
import io.papermc.paper.datacomponent.item.TooltipDisplay;
56
import net.kyori.adventure.text.Component;
67
import org.bukkit.Material;
78
import org.bukkit.inventory.ItemStack;
@@ -82,11 +83,11 @@ public void testEqualIncludeComponentIgnoreSize() {
8283
@Test
8384
public void testAdvancedExample() {
8485
ItemStack oakLeaves = ItemStack.of(Material.OAK_LEAVES, 1);
85-
oakLeaves.setData(DataComponentTypes.HIDE_TOOLTIP);
86+
oakLeaves.setData(DataComponentTypes.TOOLTIP_DISPLAY, TooltipDisplay.tooltipDisplay().hideTooltip(true).build());
8687
oakLeaves.setData(DataComponentTypes.MAX_STACK_SIZE, 1);
8788

8889
ItemStack otherOakLeavesItem = ItemStack.of(Material.OAK_LEAVES, 2);
8990

90-
Assertions.assertTrue(oakLeaves.matchesWithoutData(otherOakLeavesItem, Set.of(DataComponentTypes.HIDE_TOOLTIP, DataComponentTypes.MAX_STACK_SIZE), true));
91+
Assertions.assertTrue(oakLeaves.matchesWithoutData(otherOakLeavesItem, Set.of(DataComponentTypes.TOOLTIP_DISPLAY, DataComponentTypes.MAX_STACK_SIZE), true));
9192
}
9293
}

0 commit comments

Comments
 (0)