From: Winkarst <74284083+Winkarst-cpu@users.noreply.github.com> Date: Mon, 24 Feb 2025 20:10:59 +0000 (+0300) Subject: Cleanup: Use ``MapSystem.DeleteMap`` instead of ``IMapManager.DeleteMap`` in ``Intera... X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=5fbe217db39e4f19c9606417d31dc4159d354fe9;p=space-station-14.git Cleanup: Use ``MapSystem.DeleteMap`` instead of ``IMapManager.DeleteMap`` in ``InteractionTest`` (#35470) Cleanup --- diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs index b3d684e01a..47a1f748eb 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs @@ -260,7 +260,7 @@ public abstract partial class InteractionTest [TearDown] public async Task TearDownInternal() { - await Server.WaitPost(() => MapMan.DeleteMap(MapId)); + await Server.WaitPost(() => MapSystem.DeleteMap(MapId)); await Pair.CleanReturnAsync(); await TearDown(); }