Increasing the HttpClient timeout to 5 seconds to fix test failures on Travis CI
This commit is contained in:
parent
562f65c9c8
commit
e6bf744d49
|
|
@ -145,7 +145,8 @@ namespace E2ETests
|
||||||
var httpClientHandler = new HttpClientHandler();
|
var httpClientHandler = new HttpClientHandler();
|
||||||
var httpClient = new HttpClient(httpClientHandler)
|
var httpClient = new HttpClient(httpClientHandler)
|
||||||
{
|
{
|
||||||
BaseAddress = new Uri(deploymentResult.ApplicationBaseUri)
|
BaseAddress = new Uri(deploymentResult.ApplicationBaseUri),
|
||||||
|
Timeout = TimeSpan.FromSeconds(5)
|
||||||
};
|
};
|
||||||
|
|
||||||
// Request to base address and check if various parts of the body are rendered
|
// Request to base address and check if various parts of the body are rendered
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue