Lower the amount of ticks that AllComponents tests run for

This commit is contained in:
DrSmugleaf
2020-11-27 17:21:51 +01:00
committed by GitHub
parent cec722e19e
commit e7158212d7

View File

@@ -177,7 +177,7 @@ namespace Content.IntegrationTests.Tests
}, "Component '{0}' threw an exception.", }, "Component '{0}' threw an exception.",
component.Name); component.Name);
server.RunTicks(10); server.RunTicks(2);
entityManager.DeleteEntity(entity.Uid); entityManager.DeleteEntity(entity.Uid);
} }
@@ -307,7 +307,7 @@ namespace Content.IntegrationTests.Tests
component.Name); component.Name);
} }
server.RunTicks(48); // Run one full second on the server server.RunTicks(2);
entityManager.DeleteEntity(entity.Uid); entityManager.DeleteEntity(entity.Uid);
} }