From e7158212d7f92743a7280c62273583c6b7fc2331 Mon Sep 17 00:00:00 2001 From: DrSmugleaf Date: Fri, 27 Nov 2020 17:21:51 +0100 Subject: [PATCH] Lower the amount of ticks that AllComponents tests run for --- Content.IntegrationTests/Tests/EntityTest.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.IntegrationTests/Tests/EntityTest.cs b/Content.IntegrationTests/Tests/EntityTest.cs index ee3ac26072..a0a5c77a4f 100644 --- a/Content.IntegrationTests/Tests/EntityTest.cs +++ b/Content.IntegrationTests/Tests/EntityTest.cs @@ -177,7 +177,7 @@ namespace Content.IntegrationTests.Tests }, "Component '{0}' threw an exception.", component.Name); - server.RunTicks(10); + server.RunTicks(2); entityManager.DeleteEntity(entity.Uid); } @@ -307,7 +307,7 @@ namespace Content.IntegrationTests.Tests component.Name); } - server.RunTicks(48); // Run one full second on the server + server.RunTicks(2); entityManager.DeleteEntity(entity.Uid); }