From 1165ba363e422d456f4b15e8801812a9875bcb60 Mon Sep 17 00:00:00 2001 From: Suhas Joshi Date: Wed, 4 Feb 2015 12:00:15 -0800 Subject: [PATCH] Increasing time out for mono --- test/E2ETests/Common/Helpers.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/E2ETests/Common/Helpers.cs b/test/E2ETests/Common/Helpers.cs index 03f21a03de..bf014ebcd5 100644 --- a/test/E2ETests/Common/Helpers.cs +++ b/test/E2ETests/Common/Helpers.cs @@ -31,7 +31,7 @@ namespace E2ETests if (exception.InnerException is HttpRequestException || exception.InnerException is WebException) { logger.WriteWarning("Failed to complete the request.", exception); - var waitTimeInMilliSeconds = (RunningOnMono ? 6 : 1) * 1000; + var waitTimeInMilliSeconds = (RunningOnMono ? 7 : 1) * 1000; Thread.Sleep(waitTimeInMilliSeconds); //Wait for a second before retry } }