Non-simulated test harness runs don't check the unseed.

This commit is contained in:
A.J. Beamon 2022-03-17 11:09:14 -07:00
parent d39b881045
commit 00277140ec
1 changed files with 1 additions and 1 deletions

View File

@ -359,7 +359,7 @@ namespace SummarizeTest
}
int result = 0;
bool unseedCheck = random.NextDouble() < unseedRatio;
bool unseedCheck = !noSim && random.NextDouble() < unseedRatio;
for (int i = 0; i < maxTries; ++i)
{
bool logOnRetryableError = i == maxTries - 1;