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