From d5096f4386e815dbb6621a4b87a8066c08bb7686 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Tue, 12 May 2020 15:46:13 -0400 Subject: [PATCH] Remove failing asserts (why? IDK) [TGSDeploy] --- .../Tgstation.Server.Host.Service.Tests/TestServerService.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/Tgstation.Server.Host.Service.Tests/TestServerService.cs b/tests/Tgstation.Server.Host.Service.Tests/TestServerService.cs index 4cbfc16d8e..91a32ff3fe 100644 --- a/tests/Tgstation.Server.Host.Service.Tests/TestServerService.cs +++ b/tests/Tgstation.Server.Host.Service.Tests/TestServerService.cs @@ -43,11 +43,7 @@ namespace Tgstation.Server.Host.Service.Tests using (var service = new ServerService(mockWatchdogFactory.Object, mockLoggerFactory, default)) { onStart.Invoke(service, new object[] { args }); - - Assert.IsFalse(cancellationToken.IsCancellationRequested); - onStop.Invoke(service, Array.Empty()); - Assert.IsTrue(cancellationToken.IsCancellationRequested); mockWatchdog.VerifyAll(); }