Upgrade test framework versions

This commit is contained in:
Nate McMaster 2017-05-12 14:03:59 -07:00
parent 243ee6924c
commit c3ca9cf334
2 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@
<AspNetCoreVersion>2.0.0-*</AspNetCoreVersion>
<InternalAspNetCoreSdkVersion>2.1.0-*</InternalAspNetCoreSdkVersion>
<NETStandardImplicitPackageVersion>$(BundledNETStandardPackageVersion)</NETStandardImplicitPackageVersion>
<TestSdkVersion>15.0.0</TestSdkVersion>
<XunitVersion>2.2.0</XunitVersion>
<TestSdkVersion>15.3.0-*</TestSdkVersion>
<XunitVersion>2.3.0-beta2-*</XunitVersion>
</PropertyGroup>
</Project>

View File

@ -568,7 +568,7 @@ namespace Microsoft.AspNetCore.Session
{
byte[] value;
Assert.False(context.Session.TryGetValue("key", out value));
Assert.Equal(null, value);
Assert.Null(value);
Assert.Equal(string.Empty, context.Session.Id);
Assert.False(context.Session.Keys.Any());
return Task.FromResult(0);
@ -751,4 +751,4 @@ namespace Microsoft.AspNetCore.Session
}
}
}
}
}