From 29f9c54b864d3f86522b15651acf3b6adc57c8be Mon Sep 17 00:00:00 2001 From: Pawel Kadluczka Date: Thu, 10 Aug 2017 18:22:22 -0700 Subject: [PATCH] Updating xUnit version --- build/dependencies.props | 2 +- .../HubEndpointTests.cs | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) 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)