From 8277b2cc27c0b5ff50fcda16c335665453953da1 Mon Sep 17 00:00:00 2001 From: BrennanConroy Date: Mon, 12 Jun 2017 11:37:11 -0700 Subject: [PATCH] Enable skipped test (#551) --- test/Microsoft.AspNetCore.SignalR.Tests/EndToEndTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Microsoft.AspNetCore.SignalR.Tests/EndToEndTests.cs b/test/Microsoft.AspNetCore.SignalR.Tests/EndToEndTests.cs index 65f6faebc5..09bece49a4 100644 --- a/test/Microsoft.AspNetCore.SignalR.Tests/EndToEndTests.cs +++ b/test/Microsoft.AspNetCore.SignalR.Tests/EndToEndTests.cs @@ -197,7 +197,7 @@ namespace Microsoft.AspNetCore.SignalR.Tests Assert.Equal("Websocket closed with error: InternalServerError.", exception.Message); } - [Fact(Skip="https://github.com/aspnet/SignalR/issues/526")] + [Fact] public async Task ServerClosesConnectionWithErrorIfHubCannotBeCreated_LongPolling() { var exception = await Assert.ThrowsAsync( @@ -212,7 +212,7 @@ namespace Microsoft.AspNetCore.SignalR.Tests var logger = loggerFactory.CreateLogger(); var url = _serverFixture.BaseUrl + "/uncreatable"; - + var connection = new HubConnection(new HttpConnection(new Uri(url), transportType, loggerFactory), loggerFactory); try {