diff --git a/Content.IntegrationTests/Tests/HumanInventoryUniformSlotsTest.cs b/Content.IntegrationTests/Tests/HumanInventoryUniformSlotsTest.cs index 4bba605f0a..929a231159 100644 --- a/Content.IntegrationTests/Tests/HumanInventoryUniformSlotsTest.cs +++ b/Content.IntegrationTests/Tests/HumanInventoryUniformSlotsTest.cs @@ -1,6 +1,5 @@ using Content.Shared.Inventory; using Robust.Shared.GameObjects; -using Robust.Shared.Map; namespace Content.IntegrationTests.Tests { @@ -67,7 +66,7 @@ namespace Content.IntegrationTests.Tests EntityUid pocketItem = default; InventorySystem invSystem = default!; - var mapMan = server.ResolveDependency(); + var mapSystem = server.System(); var entityMan = server.ResolveDependency(); await server.WaitAssertion(() => @@ -129,7 +128,7 @@ namespace Content.IntegrationTests.Tests Assert.That(!invSystem.TryGetSlotEntity(human, "pocket1", out _)); }); - mapMan.DeleteMap(testMap.MapId); + mapSystem.DeleteMap(testMap.MapId); }); await pair.CleanReturnAsync();