Dependency update

This commit is contained in:
PJB3005
2025-12-08 00:49:37 +01:00
parent 1a0dab4526
commit 8580ab93a6
7 changed files with 54 additions and 44 deletions

View File

@@ -25,7 +25,7 @@ public abstract partial class EntitySpawnHelpersTest : RobustIntegrationTest
protected SharedContainerSystem Container = default!;
// Even if unused, content / downstream tests might use this class, so removal would be a breaking change?
protected IMapManager MapMan = default!;
protected IMapManager MapMan = default!;
protected EntityUid Map;
protected MapId MapId;
@@ -102,6 +102,12 @@ public abstract partial class EntitySpawnHelpersTest : RobustIntegrationTest
Assert.That(GrandChildBPos.Position, Is.EqualTo(new Vector2(2, 1)));
}
[TearDown]
public void TearDown()
{
Server?.Dispose();
}
/// <summary>
/// Simple container that can store up to 2 entities.
/// </summary>