diff --git a/src/Controls/tests/TestCases.HostApp/Issues/Issue29492.cs b/src/Controls/tests/TestCases.HostApp/Issues/Issue29492.cs index 237e895d42e4..16c92d669a44 100644 --- a/src/Controls/tests/TestCases.HostApp/Issues/Issue29492.cs +++ b/src/Controls/tests/TestCases.HostApp/Issues/Issue29492.cs @@ -3,42 +3,42 @@ namespace Maui.Controls.Sample.Issues; [Issue(IssueTracker.Github, "29492", "CharacterSpacing should be applied", PlatformAffected.Android | PlatformAffected.iOS)] public class Issue29492 : TestShell { - protected override void Init() - { - var shellContent = new ShellContent - { - Title = "Home", - Content = new Issue29492ContentPage() { Title = "Home" } - }; + protected override void Init() + { + var shellContent = new ShellContent + { + Title = "Home", + Content = new Issue29492ContentPage() { Title = "Home" } + }; - Items.Add(shellContent); - } + Items.Add(shellContent); + } - class Issue29492ContentPage : ContentPage - { - public Issue29492ContentPage() - { - var searchHandler = new SearchHandler - { - CharacterSpacing = 10 - }; + class Issue29492ContentPage : ContentPage + { + public Issue29492ContentPage() + { + var searchHandler = new SearchHandler + { + CharacterSpacing = 10 + }; - var button = new Button - { - Text = "Enter Text", - AutomationId = "Entertext", - HorizontalOptions = LayoutOptions.Center, - VerticalOptions = LayoutOptions.Center, - }; + var button = new Button + { + Text = "Enter Text", + AutomationId = "Entertext", + HorizontalOptions = LayoutOptions.Center, + VerticalOptions = LayoutOptions.Center, + }; - button.Clicked += (s, e) => - { - searchHandler.Query = "Hello World"; - }; + button.Clicked += (s, e) => + { + searchHandler.Query = "Hello World"; + }; - Shell.SetSearchHandler(this, searchHandler); + Shell.SetSearchHandler(this, searchHandler); - Content = button; - } - } + Content = button; + } + } } \ No newline at end of file diff --git a/src/Controls/tests/TestCases.HostApp/Issues/Issue29615.cs b/src/Controls/tests/TestCases.HostApp/Issues/Issue29615.cs index 87a72604b936..19dc6326ef0a 100644 --- a/src/Controls/tests/TestCases.HostApp/Issues/Issue29615.cs +++ b/src/Controls/tests/TestCases.HostApp/Issues/Issue29615.cs @@ -30,5 +30,5 @@ public Issue29615() }; Items.Add(shellContent); - } + } } diff --git a/src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/Issue29492.cs b/src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/Issue29492.cs index b125eba514ce..a603bf88062e 100644 --- a/src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/Issue29492.cs +++ b/src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/Issue29492.cs @@ -6,20 +6,20 @@ namespace Microsoft.Maui.TestCases.Tests.Issues; public class Issue29492 : _IssuesUITest { - public Issue29492(TestDevice device) - : base(device) - { - } + public Issue29492(TestDevice device) + : base(device) + { + } - public override string Issue => "CharacterSpacing should be applied"; + public override string Issue => "CharacterSpacing should be applied"; - [Test] - [Category(UITestCategories.Shell)] - public void CharacterSpacingShouldApply() - { - App.WaitForElement("Entertext"); - App.Tap("Entertext"); - VerifyScreenshot(); - } + [Test] + [Category(UITestCategories.Shell)] + public void CharacterSpacingShouldApply() + { + App.WaitForElement("Entertext"); + App.Tap("Entertext"); + VerifyScreenshot(); + } } #endif \ No newline at end of file