From f715eed63c18e991f166fd51e77eebf6c2250dcc Mon Sep 17 00:00:00 2001 From: DrSmugleaf Date: Wed, 14 Oct 2020 11:36:34 +0200 Subject: [PATCH] Fix grave mistake (#2249) --- Content.IntegrationTests/Tests/Body/LungTest.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Content.IntegrationTests/Tests/Body/LungTest.cs b/Content.IntegrationTests/Tests/Body/LungTest.cs index e1af0314c7..593670e74d 100644 --- a/Content.IntegrationTests/Tests/Body/LungTest.cs +++ b/Content.IntegrationTests/Tests/Body/LungTest.cs @@ -142,9 +142,11 @@ namespace Content.IntegrationTests.Tests.Body Assert.False(metabolism.Suffocating); }); - for (var tick = 0; tick < 600; tick++) + var increment = 10; + + for (var tick = 0; tick < 600; tick += increment) { - await server.WaitRunTicks(tick); + await server.WaitRunTicks(increment); Assert.False(metabolism.Suffocating, $"Entity {human.Name} is suffocating on tick {tick}"); }