Increasing the retry count

To fix flakiness
This commit is contained in:
Praburaj 2015-01-18 20:48:23 -08:00
parent 464438862a
commit 7847fb8257
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ namespace E2ETests
} }
} }
public static void Retry(Action retryBlock, ILogger logger, int retryCount = 3) public static void Retry(Action retryBlock, ILogger logger, int retryCount = 7)
{ {
for (int retry = 0; retry < retryCount; retry++) for (int retry = 0; retry < retryCount; retry++)
{ {