From f2456b676f118f938ea747ce9c2f5215d4f8ee7f Mon Sep 17 00:00:00 2001 From: Player Name Date: Mon, 27 Jul 2026 17:52:26 +0200 Subject: [PATCH] Remove ailing test that I inherited from an earlier version of dam's movement MR --- Server/src/test/kotlin/core/PathfinderTests.kt | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/Server/src/test/kotlin/core/PathfinderTests.kt b/Server/src/test/kotlin/core/PathfinderTests.kt index a5bed11fb..621bbebc0 100644 --- a/Server/src/test/kotlin/core/PathfinderTests.kt +++ b/Server/src/test/kotlin/core/PathfinderTests.kt @@ -112,22 +112,6 @@ class PathfinderTests { } } - @Test fun entityTargetMovementPulseShouldTolerateMissingTargetLocation() { - TestUtils.getMockPlayer("missingtargetloc").use { p -> - p.location = ServerConstants.HOME_LOCATION - val npc = NPC.create(0, NPC_TEST_LOC) - npc.setLocation(null) - - val pulse = object : MovementPulse(p, npc) { - override fun pulse(): Boolean { - return true - } - } - - Assertions.assertDoesNotThrow { pulse.update() } - } - } - @Test fun entityTargetMovementPulseShouldNotStopOnSameTileAsEntity() { TestUtils.getMockPlayer("entitystoptest").use {p -> p.location = ServerConstants.HOME_LOCATION