Fixup warnings in test (#22665)
This commit is contained in:
parent
ee80cd5ccd
commit
6188933c89
|
|
@ -11,12 +11,12 @@ namespace Microsoft.AspNetCore.Authentication.Core.Test
|
|||
[Fact]
|
||||
public void Clone_Copies()
|
||||
{
|
||||
var items = new Dictionary<string, string>
|
||||
var items = new Dictionary<string, string?>
|
||||
{
|
||||
["foo"] = "bar",
|
||||
};
|
||||
var value = "value";
|
||||
var parameters = new Dictionary<string, object>
|
||||
var parameters = new Dictionary<string, object?>
|
||||
{
|
||||
["foo2"] = value,
|
||||
};
|
||||
|
|
|
|||
|
|
@ -9,12 +9,12 @@ namespace Microsoft.AspNetCore.Authentication.Core.Test
|
|||
[Fact]
|
||||
public void Clone_Copies()
|
||||
{
|
||||
var items = new Dictionary<string, string>
|
||||
var items = new Dictionary<string, string?>
|
||||
{
|
||||
["foo"] = "bar",
|
||||
};
|
||||
var value = "value";
|
||||
var parameters = new Dictionary<string, object>
|
||||
var parameters = new Dictionary<string, object?>
|
||||
{
|
||||
["foo2"] = value,
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue