From 6dbdb0f8aa04dea2ea5aeab72d1e1524c7979752 Mon Sep 17 00:00:00 2001 From: BONNe Date: Sun, 5 Nov 2023 22:00:28 +0200 Subject: [PATCH] Update WarpsCommandTest.java --- .../java/world/bentobox/warps/commands/WarpsCommandTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/java/world/bentobox/warps/commands/WarpsCommandTest.java b/src/test/java/world/bentobox/warps/commands/WarpsCommandTest.java index 07a046f..27fd6ff 100644 --- a/src/test/java/world/bentobox/warps/commands/WarpsCommandTest.java +++ b/src/test/java/world/bentobox/warps/commands/WarpsCommandTest.java @@ -123,7 +123,7 @@ public class WarpsCommandTest { @Test public void testSetupWarpCompositeCommand() { warpCommandWarpsCompositeCommand(); - assertEquals("bskyblock.island.warp", wc.getPermission()); + assertEquals("bskyblock.island.warps", wc.getPermission()); assertTrue(wc.isOnlyPlayer()); assertEquals("warps.help.description", wc.getDescription()); } @@ -134,7 +134,7 @@ public class WarpsCommandTest { @Test public void testSetupWarp() { warpCommandWarps(); - assertEquals(Warp.WELCOME_WARP_SIGNS + ".warp", wc.getPermission()); + assertEquals(Warp.WELCOME_WARP_SIGNS + ".warps", wc.getPermission()); assertTrue(wc.isOnlyPlayer()); assertEquals("warps.help.description", wc.getDescription()); }