From 2c4e0c50e57fbf6c3b40b71693ca22399360c138 Mon Sep 17 00:00:00 2001 From: Ilona Tomkowicz Date: Wed, 15 Oct 2025 15:01:41 +0200 Subject: [PATCH 1/2] Quarantine failing. --- .../Specification.Tests/src/IdentitySpecificationTestBase.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Identity/Specification.Tests/src/IdentitySpecificationTestBase.cs b/src/Identity/Specification.Tests/src/IdentitySpecificationTestBase.cs index 7f587d5f87ee..9a26c5e1f104 100644 --- a/src/Identity/Specification.Tests/src/IdentitySpecificationTestBase.cs +++ b/src/Identity/Specification.Tests/src/IdentitySpecificationTestBase.cs @@ -610,6 +610,7 @@ private List GenerateRoles(string namePrefix, int count) /// Test. /// /// Task + [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/64055")] [Fact] public async Task CanAddAndRetrievePasskey() { @@ -649,6 +650,7 @@ public async Task CanAddAndRetrievePasskey() /// Test. /// /// Task + [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/64055")] [Fact] public async Task CanRemovePasskey() { @@ -687,6 +689,7 @@ public async Task CanRemovePasskey() /// Test. /// /// Task + [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/64055")] [Fact] public async Task CanAddMultiplePasskeys() { @@ -743,6 +746,7 @@ public async Task CanAddMultiplePasskeys() /// Test. /// /// Task + [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/64055")] [Fact] public async Task UpdatingPasskeyChangesOnlyMutableFields() { From bc55f71547b5511313dbc06352c0f0f6bedc7752 Mon Sep 17 00:00:00 2001 From: Ilona Tomkowicz <32700855+ilonatommy@users.noreply.github.com> Date: Wed, 15 Oct 2025 15:56:48 +0200 Subject: [PATCH 2/2] Add using directive for Microsoft.AspNetCore.InternalTesting --- .../Specification.Tests/src/IdentitySpecificationTestBase.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Identity/Specification.Tests/src/IdentitySpecificationTestBase.cs b/src/Identity/Specification.Tests/src/IdentitySpecificationTestBase.cs index 9a26c5e1f104..aa9048fd36fd 100644 --- a/src/Identity/Specification.Tests/src/IdentitySpecificationTestBase.cs +++ b/src/Identity/Specification.Tests/src/IdentitySpecificationTestBase.cs @@ -5,6 +5,7 @@ using System.Linq.Expressions; using System.Security.Claims; using Microsoft.AspNetCore.DataProtection; +using Microsoft.AspNetCore.InternalTesting; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using Xunit;