Most minor of code cleanups

This commit is contained in:
Jordan Dominion
2023-11-12 15:09:43 -05:00
parent d2acb3cb91
commit be741edd3a
@@ -21,7 +21,7 @@ namespace Tgstation.Server.Host.Tests.Signals
var tcs = new TaskCompletionSource();
mockServerControl
.Setup(x => x.GracefulShutdown(It.IsAny<bool>()))
.Callback(() => tcs.SetResult())
.Callback(tcs.SetResult)
.Returns(ValueTask.CompletedTask);
var mockAsyncDelayer = new Mock<IAsyncDelayer>();