Skip to content

Commit e838b50

Browse files
[create-pull-request] automated change (#31508)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 78623d6 commit e838b50

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ protected override void Init()
1313

1414
button.Clicked += async (sender, e) =>
1515
{
16-
await DisplayActionSheet("Actionsheet is set to hardcoded maxheight and maxwidth", "Cancel", null,
16+
await DisplayActionSheet("Actionsheet is set to hardcoded maxheight and maxwidth", "Cancel", null,
1717
"Option 1/6", "Option 2/6", "Option 3/6", "Option 4/6", "Option 5/6", "Option 6/6");
1818
};
1919

@@ -39,8 +39,8 @@ await DisplayActionSheet("Actionsheet is set to hardcoded maxheight and maxwidth
3939
button3.Clicked += async (sender, e) =>
4040
{
4141
await DisplayActionSheet("This is a very long title that should wrap properly to multiple lines instead of being truncated or causing horizontal overflow issues like it might on Windows", "Cancel", null,
42-
"First Option",
43-
"Second Option - this is a very long option text that should also wrap properly to multiple lines just like it does on Android platform to ensure cross-platform consistency",
42+
"First Option",
43+
"Second Option - this is a very long option text that should also wrap properly to multiple lines just like it does on Android platform to ensure cross-platform consistency",
4444
"Third Option",
4545
"Fourth Option - another long option to test that multiple long options can all wrap properly without causing display issues or horizontal scrolling like the old Windows implementation");
4646
};

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ public void ActionSheetWithSixActionsShouldDisplayProperly()
1919

2020
// Verify the ActionSheet title is visible
2121
App.WaitForElement("Actionsheet is set to hardcoded maxheight and maxwidth");
22-
22+
2323
// Verify all options are visible
2424
App.WaitForElement("Option 1/6");
2525
App.WaitForElement("Option 2/6");
2626
App.WaitForElement("Option 3/6");
2727
App.WaitForElement("Option 4/6");
2828
App.WaitForElement("Option 5/6");
2929
App.WaitForElement("Option 6/6");
30-
30+
3131
// Verify Cancel button is visible
3232
App.WaitForElement("Cancel");
3333

@@ -46,7 +46,7 @@ public void ActionSheetWithManyActionsShouldDisplayProperly()
4646

4747
// Verify the ActionSheet title is visible
4848
App.WaitForElement("This actionsheet has many more options to test if all are visible");
49-
49+
5050
// Verify some key options are visible
5151
App.WaitForElement("First Option");
5252
App.WaitForElement("Sixth Option");
@@ -87,7 +87,7 @@ public void ActionSheetWithLongTitleShouldDisplayProperly()
8787
App.WaitForElement("Second Option - this is a very long option text that should also wrap properly to multiple lines just like it does on Android platform to ensure cross-platform consistency");
8888
App.WaitForElement("Third Option");
8989
App.WaitForElement("Fourth Option - another long option to test that multiple long options can all wrap properly without causing display issues or horizontal scrolling like the old Windows implementation");
90-
90+
9191
// Verify Cancel button is visible
9292
App.WaitForElement("Cancel");
9393

0 commit comments

Comments
 (0)