We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 584f4fd commit d6631b2Copy full SHA for d6631b2
backend/FwLite/LcmCrdt.Tests/MiniLcmTests/QueryEntryTests.cs
@@ -67,7 +67,9 @@ public async Task QueryPerformanceTesting(int count)
67
var timePerEntry = queryTime / count;
68
outputHelper.WriteLine(
69
$"Total query time: {queryTime.TotalMilliseconds}ms, time per entry: {timePerEntry.TotalMicroseconds}microseconds");
70
- 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
71
+ //Tim H: 1.3 -- bumped, because on CI we got 1 and then 1.1 (new gha Windows runner)
72
+ timePerEntry.TotalMicroseconds.Should().BeLessThan(1.3);
73
}
74
75
public override async Task DisposeAsync()
0 commit comments