diff --git a/build/dependencies.props b/build/dependencies.props index e9ecbf69e3..e96db6ae96 100644 --- a/build/dependencies.props +++ b/build/dependencies.props @@ -13,7 +13,7 @@ 1.2.4 2.0.0-* 15.3.0-* - 2.3.0-beta2-* + 2.3.0-beta3-* 3.1.1 0.9.0-beta2 4.3.0 diff --git a/test/Microsoft.AspNetCore.SignalR.Tests/HubEndpointTests.cs b/test/Microsoft.AspNetCore.SignalR.Tests/HubEndpointTests.cs index 4dfac848e4..4a50b22e66 100644 --- a/test/Microsoft.AspNetCore.SignalR.Tests/HubEndpointTests.cs +++ b/test/Microsoft.AspNetCore.SignalR.Tests/HubEndpointTests.cs @@ -760,11 +760,11 @@ namespace Microsoft.AspNetCore.SignalR.Tests } } - public static IEnumerable HubTypes() + public static IEnumerable HubTypes() { - yield return new Type[] { typeof(DynamicTestHub) }; - yield return new Type[] { typeof(MethodHub) }; - yield return new Type[] { typeof(HubT) }; + yield return new[] { typeof(DynamicTestHub) }; + yield return new[] { typeof(MethodHub) }; + yield return new[] { typeof(HubT) }; } private static Type GetEndPointType(Type hubType)