Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit e4978d6

Browse files
committed
adjust proportion distribution assertion
1 parent 6e87651 commit e4978d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/ServiceStack.Redis.Tests/PooledRedisClientManagerTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ public void Can_support_64_threads_using_the_client_simultaneously()
417417
var hostCount = 0;
418418
foreach (var entry in clientUsageMap)
419419
{
420-
Assert.That(entry.Value, Is.GreaterThanOrEqualTo(5), "Host has unproportianate distrobution: " + entry.Value);
420+
Assert.That(entry.Value, Is.GreaterThanOrEqualTo(2), "Host has unproportianate distrobution: " + entry.Value);
421421
Assert.That(entry.Value, Is.LessThanOrEqualTo(30), "Host has unproportianate distrobution: " + entry.Value);
422422
hostCount += entry.Value;
423423
}

0 commit comments

Comments
 (0)