From 3a313f0fe1b778de1ed3dfb59d8476db97a75bd6 Mon Sep 17 00:00:00 2001 From: wigodbe Date: Sun, 17 May 2026 08:54:50 -0700 Subject: [PATCH] Fix unresolved quarantine issue links from gh-aw regression Replace #aw_passkeys1 and #aw_redirect1 placeholders with actual issue numbers. These were left unresolved due to a gh-aw platform regression where the bundle-based push path skips temporary ID substitution in file contents (github/gh-aw#32834). Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .../test/E2ETest/ServerRenderingTests/RedirectionTest.cs | 2 +- .../test/Templates.Blazor.Tests/BlazorWebTemplateTest.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Components/test/E2ETest/ServerRenderingTests/RedirectionTest.cs b/src/Components/test/E2ETest/ServerRenderingTests/RedirectionTest.cs index c97b7eb5bf9c..a9424bd3cc30 100644 --- a/src/Components/test/E2ETest/ServerRenderingTests/RedirectionTest.cs +++ b/src/Components/test/E2ETest/ServerRenderingTests/RedirectionTest.cs @@ -155,7 +155,7 @@ public void RedirectEnhancedPostToExternal(bool disableThrowNavigationException) [Theory] [InlineData(true)] [InlineData(false)] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/#aw_redirect1")] + [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/66709")] public void RedirectStreamingEnhancedGetToInternal(bool disableThrowNavigationException) { AppContext.SetSwitch("Microsoft.AspNetCore.Components.Endpoints.NavigationManager.DisableThrowNavigationException", disableThrowNavigationException); diff --git a/src/ProjectTemplates/test/Templates.Blazor.Tests/BlazorWebTemplateTest.cs b/src/ProjectTemplates/test/Templates.Blazor.Tests/BlazorWebTemplateTest.cs index cb3ac73a3fe7..f16330831abc 100644 --- a/src/ProjectTemplates/test/Templates.Blazor.Tests/BlazorWebTemplateTest.cs +++ b/src/ProjectTemplates/test/Templates.Blazor.Tests/BlazorWebTemplateTest.cs @@ -56,7 +56,7 @@ Project GetTargetProject(Project rootProject) [Theory] [InlineData(BrowserKind.Chromium)] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/#aw_passkeys1")] + [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/66708")] public async Task BlazorWebTemplate_CanUsePasskeys(BrowserKind browserKind) { var project = await CreateBuildPublishAsync(args: ["-int", "None", "-au", "Individual"]);