Skip to content

Commit 55ab0ab

Browse files
github-actions[bot]rmarinho
authored andcommitted
[create-pull-request] automated change (#29724)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 90a57f5 commit 55ab0ab

File tree

3 files changed

+46
-46
lines changed

3 files changed

+46
-46
lines changed

src/Controls/tests/TestCases.HostApp/Issues/Issue29492.cs

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -3,42 +3,42 @@ namespace Maui.Controls.Sample.Issues;
33
[Issue(IssueTracker.Github, "29492", "CharacterSpacing should be applied", PlatformAffected.Android | PlatformAffected.iOS)]
44
public class Issue29492 : TestShell
55
{
6-
protected override void Init()
7-
{
8-
var shellContent = new ShellContent
9-
{
10-
Title = "Home",
11-
Content = new Issue29492ContentPage() { Title = "Home" }
12-
};
6+
protected override void Init()
7+
{
8+
var shellContent = new ShellContent
9+
{
10+
Title = "Home",
11+
Content = new Issue29492ContentPage() { Title = "Home" }
12+
};
1313

14-
Items.Add(shellContent);
15-
}
14+
Items.Add(shellContent);
15+
}
1616

17-
class Issue29492ContentPage : ContentPage
18-
{
19-
public Issue29492ContentPage()
20-
{
21-
var searchHandler = new SearchHandler
22-
{
23-
CharacterSpacing = 10
24-
};
17+
class Issue29492ContentPage : ContentPage
18+
{
19+
public Issue29492ContentPage()
20+
{
21+
var searchHandler = new SearchHandler
22+
{
23+
CharacterSpacing = 10
24+
};
2525

26-
var button = new Button
27-
{
28-
Text = "Enter Text",
29-
AutomationId = "Entertext",
30-
HorizontalOptions = LayoutOptions.Center,
31-
VerticalOptions = LayoutOptions.Center,
32-
};
26+
var button = new Button
27+
{
28+
Text = "Enter Text",
29+
AutomationId = "Entertext",
30+
HorizontalOptions = LayoutOptions.Center,
31+
VerticalOptions = LayoutOptions.Center,
32+
};
3333

34-
button.Clicked += (s, e) =>
35-
{
36-
searchHandler.Query = "Hello World";
37-
};
34+
button.Clicked += (s, e) =>
35+
{
36+
searchHandler.Query = "Hello World";
37+
};
3838

39-
Shell.SetSearchHandler(this, searchHandler);
39+
Shell.SetSearchHandler(this, searchHandler);
4040

41-
Content = button;
42-
}
43-
}
41+
Content = button;
42+
}
43+
}
4444
}

src/Controls/tests/TestCases.HostApp/Issues/Issue29615.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ public Issue29615()
3030
};
3131

3232
Items.Add(shellContent);
33-
}
33+
}
3434
}

src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/Issue29492.cs

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,20 @@
66
namespace Microsoft.Maui.TestCases.Tests.Issues;
77
public class Issue29492 : _IssuesUITest
88
{
9-
public Issue29492(TestDevice device)
10-
: base(device)
11-
{
12-
}
9+
public Issue29492(TestDevice device)
10+
: base(device)
11+
{
12+
}
1313

14-
public override string Issue => "CharacterSpacing should be applied";
14+
public override string Issue => "CharacterSpacing should be applied";
1515

16-
[Test]
17-
[Category(UITestCategories.Shell)]
18-
public void CharacterSpacingShouldApply()
19-
{
20-
App.WaitForElement("Entertext");
21-
App.Tap("Entertext");
22-
VerifyScreenshot();
23-
}
16+
[Test]
17+
[Category(UITestCategories.Shell)]
18+
public void CharacterSpacingShouldApply()
19+
{
20+
App.WaitForElement("Entertext");
21+
App.Tap("Entertext");
22+
VerifyScreenshot();
23+
}
2424
}
2525
#endif

0 commit comments

Comments
 (0)