Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion backend/FwLite/LcmCrdt.Tests/MiniLcmTests/QueryEntryTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
Loading