From 21bdd95951b72393c19f27bd8548b335e3ad8a13 Mon Sep 17 00:00:00 2001 From: Jerome Laban Date: Thu, 3 Oct 2024 23:07:50 -0400 Subject: [PATCH] chore: Adjust test --- .../Tests/Windows_UI_Xaml_Controls/Given_Image.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Uno.UI.RuntimeTests/Tests/Windows_UI_Xaml_Controls/Given_Image.cs b/src/Uno.UI.RuntimeTests/Tests/Windows_UI_Xaml_Controls/Given_Image.cs index 239705fcd2ab..adaf6ce8bdcd 100644 --- a/src/Uno.UI.RuntimeTests/Tests/Windows_UI_Xaml_Controls/Given_Image.cs +++ b/src/Uno.UI.RuntimeTests/Tests/Windows_UI_Xaml_Controls/Given_Image.cs @@ -360,7 +360,7 @@ public async Task When_Image_Source_Nullify() }; var imageOpened = false; - image.ImageOpened += (_, _) => imageOpened = true; + SUT.ImageOpened += (_, _) => imageOpened = true; SUT.Source = new BitmapImage(new Uri("ms-appx:///Assets/square100.png"));