Enable skipped test (#551)

This commit is contained in:
BrennanConroy 2017-06-12 11:37:11 -07:00 committed by GitHub
parent 12917ef0e9
commit 8277b2cc27
1 changed files with 2 additions and 2 deletions

View File

@ -197,7 +197,7 @@ namespace Microsoft.AspNetCore.SignalR.Tests
Assert.Equal("Websocket closed with error: InternalServerError.", exception.Message); Assert.Equal("Websocket closed with error: InternalServerError.", exception.Message);
} }
[Fact(Skip="https://github.com/aspnet/SignalR/issues/526")] [Fact]
public async Task ServerClosesConnectionWithErrorIfHubCannotBeCreated_LongPolling() public async Task ServerClosesConnectionWithErrorIfHubCannotBeCreated_LongPolling()
{ {
var exception = await Assert.ThrowsAsync<HttpRequestException>( var exception = await Assert.ThrowsAsync<HttpRequestException>(
@ -212,7 +212,7 @@ namespace Microsoft.AspNetCore.SignalR.Tests
var logger = loggerFactory.CreateLogger<EndToEndTests>(); var logger = loggerFactory.CreateLogger<EndToEndTests>();
var url = _serverFixture.BaseUrl + "/uncreatable"; var url = _serverFixture.BaseUrl + "/uncreatable";
var connection = new HubConnection(new HttpConnection(new Uri(url), transportType, loggerFactory), loggerFactory); var connection = new HubConnection(new HttpConnection(new Uri(url), transportType, loggerFactory), loggerFactory);
try try
{ {