From b055f32e075e05919a614b4b13d84a9ba4b47d6b Mon Sep 17 00:00:00 2001 From: Cyberboss Date: Fri, 10 Aug 2018 10:18:32 -0400 Subject: [PATCH] Fix test --- tests/Tgstation.Server.Host.Tests/Core/TestApplication.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/Tgstation.Server.Host.Tests/Core/TestApplication.cs b/tests/Tgstation.Server.Host.Tests/Core/TestApplication.cs index 319b6d94c8..10e043be13 100644 --- a/tests/Tgstation.Server.Host.Tests/Core/TestApplication.cs +++ b/tests/Tgstation.Server.Host.Tests/Core/TestApplication.cs @@ -15,7 +15,9 @@ namespace Tgstation.Server.Host.Core.Tests { public Task ApplyUpdate(byte[] updateZipData, IIOManager ioManager, CancellationToken cancellationToken) => throw new NotImplementedException(); - public void RegisterForRestart(Action action) => throw new NotImplementedException(); + public void RegisterForRestart(Action action) + { + } public bool Restart() => throw new NotImplementedException();