diff --git a/backend/FwLite/LcmCrdt.Tests/MiniLcmTests/QueryEntryTests.cs b/backend/FwLite/LcmCrdt.Tests/MiniLcmTests/QueryEntryTests.cs index 8423b3bf31..d28fe21f9a 100644 --- a/backend/FwLite/LcmCrdt.Tests/MiniLcmTests/QueryEntryTests.cs +++ b/backend/FwLite/LcmCrdt.Tests/MiniLcmTests/QueryEntryTests.cs @@ -67,7 +67,9 @@ public async Task QueryPerformanceTesting(int count) var timePerEntry = queryTime / count; outputHelper.WriteLine( $"Total query time: {queryTime.TotalMilliseconds}ms, time per entry: {timePerEntry.TotalMicroseconds}microseconds"); - timePerEntry.TotalMicroseconds.Should().BeLessThan(1);//on my machine I got 0.2, so this is a safe margin + //Kevin H: 1 -- on my machine I got 0.2, so this is a safe margin + //Tim H: 1.3 -- bumped, because on CI we got 1 and then 1.1 (new gha Windows runner) + timePerEntry.TotalMicroseconds.Should().BeLessThan(1.3); } public override async Task DisposeAsync()