Non-simulated test harness runs don't check the unseed.
This commit is contained in:
parent
d39b881045
commit
00277140ec
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue