Updating xUnit version

This commit is contained in:
Pawel Kadluczka 2017-08-10 18:22:22 -07:00 committed by Pawel Kadluczka
parent 4504ae56d5
commit 29f9c54b86
2 changed files with 5 additions and 5 deletions

View File

@ -13,7 +13,7 @@
<RedisVersion>1.2.4</RedisVersion>
<RuntimeFrameworkVersion Condition="'$(TargetFramework)'=='netcoreapp2.0'">2.0.0-*</RuntimeFrameworkVersion>
<TestSdkVersion>15.3.0-*</TestSdkVersion>
<XunitVersion>2.3.0-beta2-*</XunitVersion>
<XunitVersion>2.3.0-beta3-*</XunitVersion>
<RxVersion>3.1.1</RxVersion>
<MsgPackVersion>0.9.0-beta2</MsgPackVersion>
<SystemReflectionEmitVersion>4.3.0</SystemReflectionEmitVersion>

View File

@ -760,11 +760,11 @@ namespace Microsoft.AspNetCore.SignalR.Tests
}
}
public static IEnumerable<Type[]> HubTypes()
public static IEnumerable<object[]> 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)