mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
Fix Rider analysis complaints
This commit is contained in:
@@ -49,7 +49,7 @@ namespace Robust.UnitTesting.Client.GameStates
|
||||
|
||||
Assert.That(result, Is.True);
|
||||
Assert.That(curState, Is.Not.Null);
|
||||
Assert.That(curState.ToSequence.Value, Is.EqualTo(1));
|
||||
Assert.That(curState!.ToSequence.Value, Is.EqualTo(1));
|
||||
Assert.That(nextState, Is.Null);
|
||||
}
|
||||
|
||||
@@ -75,7 +75,7 @@ namespace Robust.UnitTesting.Client.GameStates
|
||||
processor.TryGetServerState(out var state, out _);
|
||||
|
||||
Assert.NotNull(state);
|
||||
Assert.That(state.ToSequence.Value, Is.EqualTo(1));
|
||||
Assert.That(state!.ToSequence.Value, Is.EqualTo(1));
|
||||
}
|
||||
|
||||
[Test]
|
||||
|
||||
Reference in New Issue
Block a user