diff --git a/tests/Tgstation.Server.Host.Tests/TestServerFactory.cs b/tests/Tgstation.Server.Host.Tests/TestServerFactory.cs index ccff68e20d..f5a41b74d9 100644 --- a/tests/Tgstation.Server.Host.Tests/TestServerFactory.cs +++ b/tests/Tgstation.Server.Host.Tests/TestServerFactory.cs @@ -1,4 +1,4 @@ -using Microsoft.VisualStudio.TestTools.UnitTesting; +using Microsoft.VisualStudio.TestTools.UnitTesting; using Moq; using System; using System.Threading.Tasks; @@ -22,7 +22,7 @@ namespace Tgstation.Server.Host.Tests IAssemblyInformationProvider assemblyInformationProvider = Mock.Of(); Assert.ThrowsException(() => new ServerFactory(assemblyInformationProvider, null)); IIOManager ioManager = Mock.Of(); - new ServerFactory(assemblyInformationProvider, ioManager); + _ = new ServerFactory(assemblyInformationProvider, ioManager); } [TestMethod]