upgraded to vs2017

This commit is contained in:
TomPallister
2017-03-09 17:00:15 +00:00
parent ffd4e364f6
commit 6f65d9bab0
23 changed files with 274 additions and 431 deletions

View File

@ -245,6 +245,9 @@ namespace Ocelot.IntegrationTests
var responseContent = response.Content.ReadAsStringAsync().Result;
response.EnsureSuccessStatusCode();
_token = JsonConvert.DeserializeObject<BearerToken>(responseContent);
var configPath = $"{adminPath}/.well-known/openid-configuration";
response = _httpClient.GetAsync(configPath).Result;
response.EnsureSuccessStatusCode();
}
private void GivenOcelotIsRunning()