Test warning fixes

This commit is contained in:
PJB3005
2026-05-08 13:28:07 +02:00
parent 8508801670
commit 57d9d1f263
2 changed files with 3 additions and 1 deletions
@@ -6,7 +6,7 @@ namespace Robust.Shared.IntegrationTests.GameObjects;
[TestFixture]
public sealed class EntitySystemManagerUninitializedTests
{
private class DummySystem : EntitySystem;
private sealed class DummySystem : EntitySystem;
[Test]
public void TryDoesNotThrow()
@@ -11,10 +11,12 @@ namespace Robust.Shared.IntegrationTests.Serialization;
[UsedImplicitly(Reason = "Needed so RobustSerializer is guaranteed to pick up on the unsafe types.")]
internal sealed class MakeTheseSerializable
{
#pragma warning disable CS0649
public UnsafeFloat Single;
public UnsafeDouble Double;
public UnsafeHalf Half;
public Half SafeHalf;
#pragma warning restore CS0649
}
/// <summary>