This commit is contained in:
Chris R 2017-07-18 08:45:09 -07:00
Родитель 4ddfa03872
Коммит 3580ddd66c
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -102,7 +102,7 @@ namespace Microsoft.Owin.Security.Tests.Twitter
var transaction = await SendAsync(server, "http://example.com/challenge");
transaction.Response.StatusCode.ShouldBe(HttpStatusCode.Redirect);
var location = transaction.Response.Headers.Location.AbsoluteUri;
location.ShouldContain("https://twitter.com/oauth/authenticate?oauth_token=");
location.ShouldContain("https://api.twitter.com/oauth/authenticate?oauth_token=");
}
private static TestServer CreateServer(Action<IAppBuilder> configure, Func<IOwinContext, bool> handler)