From 0f10125d4eb71bb944fc02b5c3d15c2d3a57143c Mon Sep 17 00:00:00 2001 From: Martin Zikmund Date: Wed, 27 Nov 2024 23:33:50 +0100 Subject: [PATCH] chore: Adjust namespace --- src/Uno.UI.RuntimeTests/Tests/Windows_UI_Xaml/Given_Style.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Uno.UI.RuntimeTests/Tests/Windows_UI_Xaml/Given_Style.cs b/src/Uno.UI.RuntimeTests/Tests/Windows_UI_Xaml/Given_Style.cs index abaef51b6a2e..c2ff6f954032 100644 --- a/src/Uno.UI.RuntimeTests/Tests/Windows_UI_Xaml/Given_Style.cs +++ b/src/Uno.UI.RuntimeTests/Tests/Windows_UI_Xaml/Given_Style.cs @@ -96,14 +96,14 @@ public async Task When_Style_Flows_To_Popup() await UITestHelper.Load(page); var foreground = (SolidColorBrush)page.GridTextBlock.Foreground; - Assert.AreEqual(Colors.Red, foreground.Color); + Assert.AreEqual(Microsoft.UI.Colors.Red, foreground.Color); page.ShowPopup(); await TestServices.WindowHelper.WaitFor(() => VisualTreeHelper.GetOpenPopupsForXamlRoot(TestServices.WindowHelper.XamlRoot).Count > 0); var popupForeground = (SolidColorBrush)page.PopupTextBlock.Foreground; - Assert.AreEqual(Colors.Red, popupForeground.Color); + Assert.AreEqual(Microsoft.UI.Colors.Red, popupForeground.Color); } } }