From 6188933c895ee50364872daa3d090e0648f853a8 Mon Sep 17 00:00:00 2001 From: Pranav K Date: Mon, 8 Jun 2020 12:39:50 -0700 Subject: [PATCH] Fixup warnings in test (#22665) --- .../Authentication.Core/test/AuthenticationPropertiesTests.cs | 4 ++-- .../Authentication.Core/test/AuthenticationTicketTests.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Http/Authentication.Core/test/AuthenticationPropertiesTests.cs b/src/Http/Authentication.Core/test/AuthenticationPropertiesTests.cs index 5e44974c56..c511208a3c 100644 --- a/src/Http/Authentication.Core/test/AuthenticationPropertiesTests.cs +++ b/src/Http/Authentication.Core/test/AuthenticationPropertiesTests.cs @@ -11,12 +11,12 @@ namespace Microsoft.AspNetCore.Authentication.Core.Test [Fact] public void Clone_Copies() { - var items = new Dictionary + var items = new Dictionary { ["foo"] = "bar", }; var value = "value"; - var parameters = new Dictionary + var parameters = new Dictionary { ["foo2"] = value, }; diff --git a/src/Http/Authentication.Core/test/AuthenticationTicketTests.cs b/src/Http/Authentication.Core/test/AuthenticationTicketTests.cs index 9023735fac..b89c2c8a52 100644 --- a/src/Http/Authentication.Core/test/AuthenticationTicketTests.cs +++ b/src/Http/Authentication.Core/test/AuthenticationTicketTests.cs @@ -9,12 +9,12 @@ namespace Microsoft.AspNetCore.Authentication.Core.Test [Fact] public void Clone_Copies() { - var items = new Dictionary + var items = new Dictionary { ["foo"] = "bar", }; var value = "value"; - var parameters = new Dictionary + var parameters = new Dictionary { ["foo2"] = value, };