Remove ailing test that I inherited from an earlier version of dam's movement MR

This commit is contained in:
Player Name 2026-07-27 17:52:26 +02:00
parent e85d81157f
commit f2456b676f

View file

@ -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