From 77840439e7687e999049208a21b0f87974fa5e60 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 19 Feb 2024 11:33:56 -0800 Subject: [PATCH] [housekeeping] Automated PR to fix formatting errors (#1696) * Automated dotnet-format update * Revert "Automated dotnet-format update" This reverts commit 5ce323c5970d078f67c82b550543bde8dde724a5. * `dotnet format` --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Brandon Minnick <13558917+brminnick@users.noreply.github.com> --- src/CommunityToolkit.Maui.UnitTests/Views/Popup/PopupTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CommunityToolkit.Maui.UnitTests/Views/Popup/PopupTests.cs b/src/CommunityToolkit.Maui.UnitTests/Views/Popup/PopupTests.cs index 423a74aa24..6b12c452e3 100644 --- a/src/CommunityToolkit.Maui.UnitTests/Views/Popup/PopupTests.cs +++ b/src/CommunityToolkit.Maui.UnitTests/Views/Popup/PopupTests.cs @@ -351,7 +351,7 @@ public async Task ShowPopup_IsLogicalChild() page.ShowPopup((MockPopup)popup); Assert.Equal(2, page.LogicalChildrenInternal.Count); - await((MockPopup)popup).CloseAsync(token: CancellationToken.None); + await ((MockPopup)popup).CloseAsync(token: CancellationToken.None); Assert.Single(page.LogicalChildrenInternal); }