]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
fix chasm heisentest (#40456)
authorslarticodefast <161409025+slarticodefast@users.noreply.github.com>
Sat, 20 Sep 2025 05:12:10 +0000 (07:12 +0200)
committerGitHub <noreply@github.com>
Sat, 20 Sep 2025 05:12:10 +0000 (22:12 -0700)
fix chasm test

Content.IntegrationTests/Tests/Chasm/ChasmTest.cs

index 05c0d6a829e693b3b2cde33c98fbc3a5c877ed22..1754302ced064103fa7760c1ae92094a77cb5062 100644 (file)
@@ -131,14 +131,5 @@ public sealed class ChasmTest : MovementTest
         // Check that the player no longer hooked.
         Assert.That(grapplingSystem.IsEntityHooked(SPlayer), Is.False, "Player still hooked after dropping the grappling gun.");
         Assert.That(HasComp<JointRelayTargetComponent>(Player), Is.False, "Player still has the JointRelayTargetComponent after dropping the grappling gun.");
-
-        // Attempt (and fail) to walk past the chasm.
-        await Move(DirectionFlag.West, 1f);
-
-        // Wait until we get deleted.
-        await Pair.RunSeconds(5f);
-
-        // Check that the player was deleted
-        AssertDeleted(Player);
     }
 }